Files
ladybird/Libraries/LibWeb/PerformanceTimeline/PerformanceObserverEntryList.idl
2024-11-10 12:50:45 +01:00

10 lines
384 B
Plaintext

#import <HighResolutionTime/Performance.idl>
// https://w3c.github.io/performance-timeline/#performanceobserverentrylist-interface
[Exposed=(Window,Worker)]
interface PerformanceObserverEntryList {
PerformanceEntryList getEntries();
PerformanceEntryList getEntriesByType(DOMString type);
PerformanceEntryList getEntriesByName(DOMString name, optional DOMString type);
};