minecraft/interfaces/LinkTypes.ts

7 lines
114 B
TypeScript
Raw Normal View History

2022-12-03 20:02:24 +00:00
export interface LinkList {
links: CustomLink[]
}
export interface CustomLink {
name: string,
href: string
}