* Format a date into a string according to the locale and formatting * options of this `Intl.DateTimeFormat` object. * * @example * ```ts * const formatter = new Intl.DateTimeFormat('en-US', { dateStyle: 'full' }); * const date = new Date(2023, 0, 1); * console.log
(date?: Formattable | number)
| 21915 | * ``` |
| 21916 | */ |
| 21917 | format(date?: Formattable | number): string; |
| 21918 | |
| 21919 | /** |
| 21920 | * Allow locale-aware formatting of strings produced by |
no outgoing calls
no test coverage detected