brunner56's picture
implement app
0bfe2e3
raw
history blame contribute delete
214 Bytes
// vs code...
declare namespace Intl {
type Key =
| 'calendar'
| 'collation'
| 'currency'
| 'numberingSystem'
| 'timeZone'
| 'unit';
function supportedValuesOf(input: Key): string[];
}