9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
export interface LinkEntry {
|
|
id: string;
|
|
target: string;
|
|
short: string;
|
|
ogTitle?: string;
|
|
ogDesc?: string;
|
|
ogImage?: string;
|
|
clicks: number;
|
|
}
|