File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ import type {
8585 CallTreeSummaryStrategy ,
8686 EventDelayInfo ,
8787 ThreadsKey ,
88- resourceTypeEnum ,
88+ ResourceTypeEnum ,
8989 MarkerPayload ,
9090 Address ,
9191 AddressProof ,
@@ -2822,7 +2822,7 @@ export function getThreadProcessDetails(
28222822function _shouldShowBothOriginAndFileName (
28232823 fileName : string ,
28242824 origin : string ,
2825- resourceType : resourceTypeEnum | null
2825+ resourceType : ResourceTypeEnum | null
28262826) : boolean {
28272827 // If the origin string is just a URL prefix that's part of the
28282828 // filename, it doesn't add any useful information, so only show
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export type IndexIntoLibs = number;
1717export type IndexIntoNativeSymbolTable = number ;
1818export type IndexIntoCategoryList = number ;
1919export type IndexIntoSubcategoryListForCategory = number ;
20- export type resourceTypeEnum = number ;
20+ export type ResourceTypeEnum = number ;
2121export type ThreadIndex = number ;
2222// The Tid is most often a number. However in some cases such as merged profiles
2323// we could generate a string.
@@ -370,7 +370,7 @@ export type ResourceTable = {
370370 lib : Array < IndexIntoLibs | null > ;
371371 name : Array < IndexIntoStringTable > ;
372372 host : Array < IndexIntoStringTable | null > ;
373- type : resourceTypeEnum [ ] ;
373+ type : ResourceTypeEnum [ ] ;
374374} ;
375375
376376/**
You can’t perform that action at this time.
0 commit comments