(
locales: string | string[],
options?: Pick<DurationFormatOptions, 'localeMatcher'>
)
| 309 | } |
| 310 | |
| 311 | static supportedLocalesOf( |
| 312 | locales: string | string[], |
| 313 | options?: Pick<DurationFormatOptions, 'localeMatcher'> |
| 314 | ): string[] { |
| 315 | return SupportedLocales( |
| 316 | DurationFormat.availableLocales, |
| 317 | CanonicalizeLocaleList(locales), |
| 318 | options as any |
| 319 | ) |
| 320 | } |
| 321 | |
| 322 | static __defaultLocale = 'en' |
| 323 | static availableLocales: Set<string> = new Set<string>() |
nothing calls this directly
no test coverage detected