UNPKG

218 BTypeScriptView Raw
1export interface ILinkItem {
2 title?: string;
3 linkType?: number;
4 url?: string;
5 group?: string;
6 openNewWindow?: boolean;
7}
8export interface ILinkType {
9 id: number;
10 title: string;
11}