headplane/app/types/PreAuthKey.ts

14 lines
227 B
TypeScript
Raw Normal View History

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