Interface PerformanceObserver

    interface PerformanceObserver {
        disconnect(): void;
        observe(options?: PerformanceObserverInit): void;
        takeRecords(): PerformanceEntryList;
    }

    Methods