link_shortener/common/lib.ts
2025-12-12 21:12:47 +02:00

9 lines
171 B
TypeScript

export interface LinkEntry {
id: string;
target: string;
short: string;
ogTitle?: string;
ogDesc?: string;
ogImage?: string;
clicks: number;
}