mirror of
https://github.com/khairul169/cebol.git
synced 2025-04-28 08:39:33 +07:00
8 lines
107 B
TypeScript
8 lines
107 B
TypeScript
export type Link = {
|
|
id: string;
|
|
alias: string;
|
|
url: string;
|
|
clicks: number;
|
|
createdAt: Date;
|
|
};
|