xmldsigjs
Version:
XMLDSIGjs provides an implementation of XMLDSIG in Typescript/Javascript based on WebCrypto
9 lines (8 loc) • 298 B
TypeScript
import { Transform } from "./transform";
import { XmlSignatureCollection } from "./xml_object";
/**
* The Transforms element contains a collection of transformations
*/
export declare class Transforms extends XmlSignatureCollection<Transform> {
protected OnLoadXml(element: Element): void;
}