build: TypeScript 3.5 upgrade (#31615)
https://github.com/Microsoft/TypeScript/wiki/Breaking-Changes#typescript-35 PR Close #31615
This commit is contained in:
@ -60,7 +60,7 @@ describe('Collector', () => {
|
||||
version: METADATA_VERSION,
|
||||
metadata: {
|
||||
DeclaredClass: {__symbolic: 'class'},
|
||||
declaredFn: {__symbolic: 'function'},
|
||||
declaredFn: {__symbolic: 'function'} as any,
|
||||
}
|
||||
});
|
||||
});
|
||||
@ -433,8 +433,8 @@ describe('Collector', () => {
|
||||
}
|
||||
}
|
||||
},
|
||||
complexFn: {__symbolic: 'function'},
|
||||
declaredFn: {__symbolic: 'function'}
|
||||
complexFn: {__symbolic: 'function'} as any,
|
||||
declaredFn: {__symbolic: 'function'} as any,
|
||||
}
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user