Skip to content

Instantly share code, notes, and snippets.

@armorpreston
Last active July 25, 2019 18:50
Show Gist options
  • Save armorpreston/811f297d6c50fb0d3c1eb4855dfceb31 to your computer and use it in GitHub Desktop.
Save armorpreston/811f297d6c50fb0d3c1eb4855dfceb31 to your computer and use it in GitHub Desktop.
List Interfaces
export interface IListItem {
id: string | number;
label: string;
icon?: string;
[additionalProperties: string]: any;
}
import { IListItem } from './list-item.interface';
export interface IList {
id?: string | number;
label?: string;
items: IListItem[];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment