Variable ListFormat

ListFormat: {
    prototype: Intl.ListFormat;
    supportedLocalesOf(
        locales: LocalesArgument,
        options?: Pick<ListFormatOptions, "localeMatcher">,
    ): string[];
    new (
        locales?: LocalesArgument,
        options?: ListFormatOptions,
    ): Intl.ListFormat;
}

Type declaration