2017-05-24 00:46:34 +02:00
|
|
|
export interface IIcon {
|
2017-10-24 00:11:48 +02:00
|
|
|
/**
|
|
|
|
* Icon filename
|
|
|
|
* @type {string}
|
|
|
|
* @memberof IIcon
|
|
|
|
*/
|
|
|
|
filename: string;
|
2017-05-24 00:46:34 +02:00
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|