Files
headplane/app/types/PreAuthKey.ts
T
2026-04-26 20:38:45 -04:00

14 lines
243 B
TypeScript

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