mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 15:07:33 +08:00
11 lines
279 B
TypeScript
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;
|
|
}
|