Skip to main content
Module

x/netzo/deno.d.ts>URL

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
class URL
import { URL } from "https://deno.land/x/netzo@v0.1.27/deno.d.ts";

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

Constructors

new
URL(url: string | URL, base?: string | URL)

Properties

hash: string
host: string
hostname: string
href: string
readonly
origin: string
password: string
pathname: string
port: string
protocol: string
readonly
searchParams: URLSearchParams
username: string

Methods

toJSON(): string
toString(): string

Static Methods

createObjectURL(blob: Blob): string
revokeObjectURL(url: string): void