headplane/app/types/PreAuthKey.ts
2025-05-25 11:02:19 -04:00

14 lines
227 B
TypeScript

import type { User } from './User';
export interface PreAuthKey {
id: string;
key: string;
user: User;
reusable: boolean;
ephemeral: boolean;
used: boolean;
expiration: string;
createdAt: string;
aclTags: string[];
}