5 lines
173 B
TypeScript
5 lines
173 B
TypeScript
declare namespace Intl {
|
|
type Key = 'calendar' | 'collation' | 'currency' | 'numberingSystem' | 'timeZone' | 'unit';
|
|
|
|
function supportedValuesOf(input: Key): string[];
|
|
} |