mirror of
https://github.com/pockethost/pockethost.git
synced 2025-06-05 21:56:48 +00:00
8 lines
116 B
TypeScript
8 lines
116 B
TypeScript
import { RecordId } from './types'
|
|
|
|
export type UserRecord = {
|
|
id: RecordId
|
|
email: string
|
|
verified: boolean
|
|
}
|