We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b59a46 commit d467603Copy full SHA for d467603
lib/settings.d.ts
@@ -1,18 +1,18 @@
1
import { DateFormat, TimeFormat } from '../lib/types';
2
3
export interface Settings {
4
- dateFormat: DateFormat
5
- timeFormat: TimeFormat
6
- numeric: NumericSettings
+ dateFormat?: DateFormat
+ timeFormat?: TimeFormat
+ numeric?: NumericSettings
7
}
8
9
export interface NumericSettings {
10
- groupSeparator: string
11
- decimalSeparator: string
12
- decimalPlaces: number
13
- sign: string
14
- signPos: 'left' | 'right'
15
- min: number
16
- max: number
+ groupSeparator?: string
+ decimalSeparator?: string
+ decimalPlaces?: number
+ sign?: string
+ signPos?: 'left' | 'right'
+ min?: number
+ max?: number
17
18
0 commit comments