Interface NumberFormatConstructor

interface NumberFormatConstructor {
    new NumberFormatConstructor(
        locales?: string | string[],
        options?: NumberFormatOptions,
    ): Intl.NumberFormat;
    new NumberFormatConstructor(
        locales?: LocalesArgument,
        options?: NumberFormatOptions,
    ): Intl.NumberFormat;
    prototype: Intl.NumberFormat;
    supportedLocalesOf(
        locales: LocalesArgument,
        options?: NumberFormatOptions,
    ): string[];
    (
        locales?: LocalesArgument,
        options?: NumberFormatOptions,
    ): Intl.NumberFormat;
}

Constructors

Properties

Methods

Constructors

Properties

prototype: Intl.NumberFormat

Methods