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
3ab3910b12
commit
64c708986f
1 changed files with 3 additions and 3 deletions
|
|
@ -3,10 +3,10 @@ import useSWR from 'swr'
|
|||
import { publicGqlFetcher } from '../networkHelpers'
|
||||
|
||||
export interface Integration {
|
||||
id: String
|
||||
id: string
|
||||
type: IntegrationType
|
||||
token: String
|
||||
enabled: Boolean
|
||||
token: string
|
||||
enabled: boolean
|
||||
createdAt: Date
|
||||
updatedAt: Date
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue