Files
ezbookkeeping/src/core/icon.ts
T
2024-12-30 00:56:48 +08:00

11 lines
230 B
TypeScript

export type LineAwesomeIconClassName = string;
export interface IconInfo {
readonly icon: LineAwesomeIconClassName;
}
export interface IconInfoWithId {
readonly id: string;
readonly icon: LineAwesomeIconClassName;
}