External module "fetcher"
Variables
Const fetcher
fetcher
: IExports = ((() => {const base: Fetch = async (input: RequestInit, init?: IRequestInit): Promise<IResponseMutable> => fetch(input, init);const exported: IExports = base as any; // tslint:disable-line:no-anyObject.defineProperties(exported, {Headers: { get: () => Headers },Response: { get: () => Response },Request: { get: () => Request },});return exported;})())