← Back to index
variable URL

The URL interface represents an object providing static methods used for creating object URLs.

type

🔗
{ readonly prototype: URL; new (url: string | URL, base?: string | URL): URL; canParse(url: string | URL, base?: string | URL): boolean; createObjectURL(blob: Blob): string; revokeObjectURL(url: string): void; }