Add support for formatRange to Intl.DateTimeFormat (#47740)

* add interface for DateTimeFormat.format

* remove railing whitespace
This commit is contained in:
Vritant Bhardwaj 2022-02-15 14:53:44 -08:00 committed by GitHub
parent 1e60c8702c
commit 0798faf596
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,6 @@
declare namespace Intl {
// Empty for now
interface DateTimeFormat {
formatRange(startName: Date, endNumber: Date): string;
}
}