headplane/app/types/PreAuthKey.ts
2025-01-06 08:19:40 +05:30

12 lines
192 B
TypeScript

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