headplane/app/types/PreAuthKey.ts

12 lines
183 B
TypeScript
Raw Normal View History

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