Skip to content

Commit efe71ad

Browse files
committed
fix: fractionalSecondDigits configure
1 parent 53343dd commit efe71ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/lib.es2020.intl.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,6 @@ declare namespace Intl {
304304
dayPeriod?: "narrow" | "short" | "long";
305305
numberingSystem?: string;
306306
hourCycle?: "h11" | "h12" | "h23" | "h24";
307-
fractionalSecondDigits?: 0 | 1 | 2 | 3;
307+
fractionalSecondDigits?: 1 | 2 | 3;
308308
}
309309
}

src/lib/es2021.intl.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ declare namespace Intl {
1919
timeStyle?: "full" | "long" | "medium" | "short";
2020
hourCycle?: "h11" | "h12" | "h23" | "h24";
2121
dayPeriod?: "narrow" | "short" | "long";
22-
fractionalSecondDigits?: 0 | 1 | 2 | 3;
22+
fractionalSecondDigits?: 1 | 2 | 3;
2323
}
2424

2525
/**

0 commit comments

Comments
 (0)