mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-15 23:47:33 +08:00
migrate schedule frequency select / selection sheet to composition API and typescript
This commit is contained in:
+7
-1
@@ -1,4 +1,4 @@
|
||||
import type { TypeAndName } from './base.ts';
|
||||
import type { TypeAndName, TypeAndDisplayName } from './base.ts';
|
||||
|
||||
type AccountTypeName = 'SingleAccount' | 'MultiSubAccounts';
|
||||
|
||||
@@ -74,3 +74,9 @@ export class AccountCategory implements TypeAndName {
|
||||
return AccountCategory.allInstancesByType[type];
|
||||
}
|
||||
}
|
||||
|
||||
export interface LocalizedAccountCategory extends TypeAndDisplayName {
|
||||
readonly type: number;
|
||||
readonly displayName: string;
|
||||
readonly defaultAccountIconId: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user