LinkList/frontend/utils/types.ts

5 lines
57 B
TypeScript

export interface Link {
name: string;
url: string;
}