Temporal Utils by Ian Macalinao
    Preparing search index...

    Interface TemporalApi

    The Temporal API surface returned by loadTemporal.

    Mirrors the runtime exports of temporal-polyfill (which are typed against temporal-spec):

    • Temporal — the Temporal namespace object.
    • Intl — the Temporal-aware Intl namespace object.
    • toTemporalInstant — the function installed as Date.prototype.toTemporalInstant.
    interface TemporalApi {
        Intl: TemporalIntl;
        Temporal: typeof Temporal;
        toTemporalInstant: (this: Date) => Instant;
    }
    Index
    Temporal: typeof Temporal
    toTemporalInstant: (this: Date) => Instant