mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 23:17:33 +08:00
10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
export interface TypeAndName {
|
|
readonly type: number;
|
|
readonly name: string;
|
|
}
|
|
|
|
export interface TypeAndDisplayName {
|
|
readonly type: number;
|
|
readonly displayName: string;
|
|
}
|