Files
workavia-calendar-front/src/Intl.d.ts
T
2025-09-12 11:05:52 +02:00

12 lines
200 B
TypeScript

declare namespace Intl {
type Key =
| "calendar"
| "collation"
| "currency"
| "numberingSystem"
| "timeZone"
| "unit";
function supportedValuesOf(input: Key): string[];
}