Skip to main content
Module

x/deno_dom/build/deno-wasm/deno-wasm.d.ts

Browser DOM & HTML parser in Deno
Extremely Popular
Go to Latest
File
/* tslint:disable *//* eslint-disable *//** * @param {string} html * @returns {string} */export function parse(html: string): string;/** * @param {string} html * @returns {string} */export function parse_frag(html: string): string;
export type InitInput = | RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
export interface InitOutput { readonly memory: WebAssembly.Memory; readonly parse: (a: number, b: number, c: number) => void; readonly parse_frag: (a: number, b: number, c: number) => void; readonly __wbindgen_add_to_stack_pointer: (a: number) => number; readonly __wbindgen_malloc: (a: number) => number; readonly __wbindgen_realloc: (a: number, b: number, c: number) => number; readonly __wbindgen_free: (a: number, b: number) => void;}
/** * If `module_or_path` is {RequestInfo} or {URL}, makes a request and * for everything else, calls `WebAssembly.instantiate` directly. * * @param {InitInput | Promise<InitInput>} module_or_path * * @returns {Promise<InitOutput>} */export default function init( module_or_path?: InitInput | Promise<InitInput>,): Promise<InitOutput>;