Files
ezbookkeeping/src/core/icon.ts
T
2025-01-05 13:22:35 +08:00

11 lines
279 B
TypeScript

export type LineAwesomeIconClassName = string;
export interface IconInfo extends Record<string, unknown> {
readonly icon: LineAwesomeIconClassName;
}
export interface IconInfoWithId extends IconInfo {
readonly id: string;
readonly icon: LineAwesomeIconClassName;
}