7 lines
114 B
TypeScript
7 lines
114 B
TypeScript
export interface LinkList {
|
|
links: CustomLink[]
|
|
}
|
|
export interface CustomLink {
|
|
name: string,
|
|
href: string
|
|
} |