headplane/app/types/PreAuthKey.ts

12 lines
192 B
TypeScript
Raw Normal View History

export interface PreAuthKey {
2024-12-31 10:30:14 +05:30
id: string;
key: string;
user: string;
reusable: boolean;
ephemeral: boolean;
used: boolean;
expiration: string;
createdAt: string;
aclTags: string[];
}