Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/windmill/node_modules/evt/lib/types/lib.dom.d.ts>XSLTProcessor

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
interface XSLTProcessor
import { type XSLTProcessor } from "https://deno.land/x/windmill@v1.298.0/node_modules/evt/lib/types/lib.dom.d.ts";

An XSLTProcessor applies an XSLT stylesheet transformation to an XML document to produce a new XML document as output. It has methods to load the XSLT stylesheet, to manipulate xsl:param parameter values, and to apply the transformation to documents.

Methods

clearParameters(): void
getParameter(namespaceURI: string, localName: string): any
importStylesheet(style: Node): void
removeParameter(namespaceURI: string, localName: string): void
reset(): void
setParameter(
namespaceURI: string,
localName: string,
value: any,
): void
transformToDocument(source: Node): Document
transformToFragment(source: Node, document: Document): DocumentFragment