Skip to main content
Module

x/evt/lib/types/index.ts>dom.Blob

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.Blob
import { type dom } from "https://deno.land/x/evt@v2.4.13/lib/types/index.ts";
const { Blob } = dom;

A file-like object of immutable, raw data. Blobs represent data that isn't necessarily in a JavaScript-native format. The File interface is based on Blob, inheriting blob functionality and expanding it to support files on the user's system.

Properties

readonly
size: number
readonly
type: string

Methods

arrayBuffer(): Promise<ArrayBuffer>
slice(
start?: number,
end?: number,
contentType?: string,
): Blob
stream(): ReadableStream
text(): Promise<string>