vsc-material-theme/.gulp/interfaces/iicon.ts

14 lines
No EOL
231 B
TypeScript

export interface IIcon {
/**
* If set to true, the icon is marked as last
* @type {boolean}
* @memberof IIcon
*/
last: boolean;
/**
* Icon's name
* @type {string}
* @memberof IIcon
*/
name: string;
}