8 lines
109 B
TypeScript
8 lines
109 B
TypeScript
export type Key = {
|
|
id: string;
|
|
prefix: string;
|
|
expiration: string;
|
|
createdAt: Date;
|
|
lastSeen: Date;
|
|
};
|