MLE Implemented Web APIs(mle-js-webapis)
    Preparing search index...

    Interface Performance

    Copyright (c) 2025, Oracle and/or its affiliates.

    interface Performance {
        timeOrigin: number;
        addEventListener(
            type: string,
            callback: EventListenerOrEventListenerObject,
            options?: boolean | AddEventListenerOptions,
        ): void;
        dispatchEvent(event: Event): boolean;
        now(): number;
        removeEventListener(
            type: string,
            callback: EventListenerOrEventListenerObject,
            options?: boolean | EventListenerOptions,
        ): void;
        toJSON(): any;
    }

    Hierarchy (View Summary)

    Index

    Properties

    timeOrigin: number

    Methods

    • Returns number

    • Returns any