mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-17 08:14:25 +08:00
migrate signup page to composition API and typescript
This commit is contained in:
@@ -1,5 +1,20 @@
|
||||
import type { TypeAndName } from './base.ts';
|
||||
|
||||
export interface CurrencyInfo {
|
||||
readonly code: string,
|
||||
readonly fraction?: number,
|
||||
readonly symbol?: {
|
||||
readonly normal: string,
|
||||
readonly plural?: string
|
||||
},
|
||||
readonly unit: string
|
||||
}
|
||||
|
||||
export interface LocalizedCurrencyInfo {
|
||||
readonly currencyCode: string,
|
||||
readonly displayName: string
|
||||
}
|
||||
|
||||
export enum CurrencyDisplaySymbol {
|
||||
None = 0,
|
||||
Symbol = 1,
|
||||
|
||||
Reference in New Issue
Block a user