refactor(TypeScript): Add noImplicitAny
We automatically insert explicit 'any's where needed. These need to be addressed as in #9100. Fixes #4924
This commit is contained in:
@ -168,6 +168,6 @@ export class Request {
|
||||
|
||||
const noop = function () {};
|
||||
const w = typeof window == 'object' ? window : noop;
|
||||
const FormData = w['FormData'] || noop;
|
||||
const Blob = w['Blob'] || noop;
|
||||
const ArrayBuffer = w['ArrayBuffer'] || noop;
|
||||
const FormData = (w as any /** TODO #9100 */)['FormData'] || noop;
|
||||
const Blob = (w as any /** TODO #9100 */)['Blob'] || noop;
|
||||
const ArrayBuffer = (w as any /** TODO #9100 */)['ArrayBuffer'] || noop;
|
||||
|
Reference in New Issue
Block a user