Temporal Utils by Ian Macalinao
    Preparing search index...

    Interface TemporalIntl

    The Temporal-aware Intl namespace object. temporal-spec declares Intl as a type-only namespace (no value export), so its value shape — a DateTimeFormat that can format Temporal objects — is mirrored here from temporal-spec's own declaration.

    interface TemporalIntl {
        DateTimeFormat: {
            supportedLocalesOf(
                locales: LocalesArgument,
                options?: DateTimeFormatOptions,
            ): string[];
            (
                locales?: LocalesArgument,
                options?: DateTimeFormatOptions,
            ): DateTimeFormat;
            new (
                locales?: LocalesArgument,
                options?: DateTimeFormatOptions,
            ): DateTimeFormat;
        };
    }
    Index
    DateTimeFormat: {
        supportedLocalesOf(
            locales: LocalesArgument,
            options?: DateTimeFormatOptions,
        ): string[];
        (
            locales?: LocalesArgument,
            options?: DateTimeFormatOptions,
        ): DateTimeFormat;
        new (
            locales?: LocalesArgument,
            options?: DateTimeFormatOptions,
        ): DateTimeFormat;
    }