Interface PerformanceObserverEntryList
interface PerformanceObserverEntryList {
getEntries(): PerformanceEntryList;
getEntriesByName(name: string, type?: string): PerformanceEntryList;
getEntriesByType(type: string): PerformanceEntryList;
}
getEntries(): PerformanceEntryList;
getEntriesByName(name: string, type?: string): PerformanceEntryList;
getEntriesByType(type: string): PerformanceEntryList;
}
Index
Methods
getEntries
- getEntries(): PerformanceEntryList
Returns PerformanceEntryList
getEntriesByName
- getEntriesByName(name: string, type?: string): PerformanceEntryList
Parameters
- name: string
Optional
type: string
Returns PerformanceEntryList
getEntriesByType
- getEntriesByType(type: string): PerformanceEntryList
Parameters
- type: string
Returns PerformanceEntryList
MDN Reference