d76775c7d2
Co-authored-by: Camille Moussu <cmoussu@linagora.com>
12 lines
200 B
TypeScript
12 lines
200 B
TypeScript
declare namespace Intl {
|
|
type Key =
|
|
| "calendar"
|
|
| "collation"
|
|
| "currency"
|
|
| "numberingSystem"
|
|
| "timeZone"
|
|
| "unit";
|
|
|
|
function supportedValuesOf(input: Key): string[];
|
|
}
|