8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
if (typeof window === 'undefined') {
|
|
global.fetch = fetch
|
|
global.Headers = Headers
|
|
global.Request = Request
|
|
global.Response = Response
|
|
}
|
|
|
|
export {}
|