headplane/app/types/PreAuthKey.ts
2024-10-11 03:02:33 -04:00

12 lines
183 B
TypeScript

export interface PreAuthKey {
id: string
key: string
user: string
reusable: boolean
ephemeral: boolean
used: boolean
expiration: string
createdAt: string
aclTags: string[]
}