vsc-material-theme/.gulp/interfaces/iicon.ts
Mattia Astorino 2f4f56f40d
unlock files
2018-04-20 20:07:36 +02:00

20 lines
No EOL
323 B
TypeScript

export interface IIcon {
/**
* Icon filename
* @type {string}
* @memberof IIcon
*/
filename: string;
/**
* 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;
}