ladybird/Libraries/LibWeb/PerformanceTimeline/PerformanceObserverEntryList.idl

10 lines
384 B
Text
Raw Normal View History

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