/
githubmirror
/
TypeScript
Обзор
Документация
Войти
/
githubmirror
/
TypeScript
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib/es2017.intl.d.ts
26 строк
622 B
Jake Bailey
dprint the codebase (#54820)
17 авг 2023, 00:26
Не верифицирован
17 авг 2023, 00:26
5e8c261
Код
Авторство
О чём код?
declare namespace Intl { interface DateTimeFormatPartTypesRegistry { day: any; dayPeriod: any; era: any; hour: any; literal: any; minute: any; month: any; second: any; timeZoneName: any; weekday: any; year: any; } type DateTimeFormatPartTypes = keyof DateTimeFormatPartTypesRegistry; interface DateTimeFormatPart { type: DateTimeFormatPartTypes; value: string; } interface DateTimeFormat { formatToParts(date?: Date | number): DateTimeFormatPart[]; } }