headplane/app/types/Key.ts
2024-03-30 02:44:06 -04:00

8 lines
108 B
TypeScript

export type Key = {
id: string;
prefix: string;
expiration: string;
createdAt: Date;
lastSeen: Date;
}