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
- get
Entries (): PerformanceEntryList Returns PerformanceEntryList
getEntriesByName
- get
Entries (name, type?): PerformanceEntryListBy Name Parameters
- name: string
Optional
type: string
Returns PerformanceEntryList
getEntriesByType
- get
Entries (type): PerformanceEntryListBy Type Parameters
- type: string
Returns PerformanceEntryList
MDN Reference