12 lines
192 B
TypeScript
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[];
|
|
}
|