We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fb1052 commit d05a18bCopy full SHA for d05a18b
polyfill/index.d.ts
@@ -1,6 +1,15 @@
1
export namespace Temporal {
2
export type ComparisonResult = -1 | 0 | 1;
3
- export type RoundingMode = 'halfExpand' | 'ceil' | 'trunc' | 'floor';
+ export type RoundingMode =
4
+ | 'ceil'
5
+ | 'floor'
6
+ | 'expand'
7
+ | 'trunc'
8
+ | 'halfCeil'
9
+ | 'halfFloor'
10
+ | 'halfExpand'
11
+ | 'halfTrunc'
12
+ | 'halfEven';
13
14
/**
15
* Options for assigning fields using `with()` or entire objects with
0 commit comments