14 lines
231 B
TypeScript
14 lines
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;
|
||
|
}
|