Variable URL
URL: {
prototype: URL;
canParse(url: string | URL, base?: string | URL): boolean;
createObjectURL(obj: Blob | MediaSource): string;
parse(url: string | URL, base?: string | URL): URL;
revokeObjectURL(url: string): void;
new (url: string | URL, base?: string | URL): URL;
}
prototype: URL;
canParse(url: string | URL, base?: string | URL): boolean;
createObjectURL(obj: Blob | MediaSource): string;
parse(url: string | URL, base?: string | URL): URL;
revokeObjectURL(url: string): void;
new (url: string | URL, base?: string | URL): URL;
}
Type declaration
- prototype: URL
- canParse:function
- createObjectURL:function- createObjectURL(obj: Blob | MediaSource): string
- Parameters- obj: Blob | MediaSource
 - Returns string
 
- parse:function
- revokeObjectURL:function
MDN Reference