1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* eslint-disable */ declare const nodeFetch: typeof import('node-fetch').default; declare global { interface ReadonlyArray<T> { includes<S, R extends `${Extract<S, string>}`>( this: ReadonlyArray<R>, searchElement: S, fromIndex?: number ): searchElement is R & S; } var fetch: typeof nodeFetch; } export {};