UNPKG

@whatwg-node/node-fetch

Version:

Fetch API implementation for Node

8 lines (7 loc) 318 B
import { PonyfillBlob } from './Blob.js'; export declare class PonyfillURL extends URL { static blobRegistry: Map<string, Blob | PonyfillBlob>; static createObjectURL(blob: Blob): string; static revokeObjectURL(url: string): void; static getBlobFromURL(url: string): Blob | PonyfillBlob | undefined; }