cebol/types/link.ts

8 lines
107 B
TypeScript
Raw Normal View History

2024-04-13 16:04:32 +07:00
export type Link = {
id: string;
alias: string;
url: string;
clicks: number;
createdAt: Date;
};