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
- Optionaltype: string
 - Returns PerformanceEntryList
getEntriesByType   
- getEntriesByType(type: string): PerformanceEntryList
- Parameters- type: string
 - Returns PerformanceEntryList
MDN Reference