mirror of
https://github.com/tale/headplane.git
synced 2026-07-26 15:58:14 +00:00
8 lines
109 B
TypeScript
8 lines
109 B
TypeScript
export type Key = {
|
|
id: string;
|
|
prefix: string;
|
|
expiration: string;
|
|
createdAt: Date;
|
|
lastSeen: Date;
|
|
};
|