mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-17 08:14:25 +08:00
code refactor
This commit is contained in:
@@ -14,8 +14,8 @@ export enum CurrencyDisplayLocation {
|
||||
}
|
||||
|
||||
export interface CurrencyPrependAndAppendText {
|
||||
prependText?: string;
|
||||
appendText?: string;
|
||||
readonly prependText?: string;
|
||||
readonly appendText?: string;
|
||||
}
|
||||
|
||||
export class CurrencyDisplayType implements TypeAndName {
|
||||
|
||||
+5
-5
@@ -1,11 +1,11 @@
|
||||
import type { TypeAndName, TypeAndDisplayName } from '@/core/base.ts';
|
||||
|
||||
export interface NumberFormatOptions {
|
||||
digitGrouping?: number;
|
||||
digitGroupingSymbol?: string;
|
||||
decimalNumberCount?: number;
|
||||
decimalSeparator?: string;
|
||||
trimTailZero?: boolean;
|
||||
readonly digitGrouping?: number;
|
||||
readonly digitGroupingSymbol?: string;
|
||||
readonly decimalNumberCount?: number;
|
||||
readonly decimalSeparator?: string;
|
||||
readonly trimTailZero?: boolean;
|
||||
}
|
||||
|
||||
export interface NumeralSymbolType {
|
||||
|
||||
Reference in New Issue
Block a user