11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
export type LineAwesomeIconClassName = string;
|
|
|
|
export interface IconInfo {
|
|
readonly icon: LineAwesomeIconClassName;
|
|
}
|
|
|
|
export interface IconInfoWithId {
|
|
readonly id: string;
|
|
readonly icon: LineAwesomeIconClassName;
|
|
}
|