2022-11-14 18:15:11 -08:00

8 lines
116 B
TypeScript

import { RecordId } from './types'
export type UserRecord = {
id: RecordId
email: string
verified: boolean
}