mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix types
This commit is contained in:
parent
b872c33ba9
commit
948fa78ab5
1 changed files with 2 additions and 2 deletions
|
|
@ -5,12 +5,12 @@ type MarkEmailAsItemDataResponseData = {
|
|||
}
|
||||
|
||||
type MarkEmailAsItemData = {
|
||||
success: Boolean
|
||||
success: boolean
|
||||
errorCodes?: unknown[]
|
||||
}
|
||||
|
||||
export async function markEmailAsItemMutation(
|
||||
recentEmailId: String
|
||||
recentEmailId: string
|
||||
): Promise<void> {
|
||||
const mutation = `
|
||||
mutation MarkRecentEmailAsItem($recentEmailId: ID!) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue