xadesjs
Version:
XML Advanced Electronic Signatures (XAdES) implementation in TypeScript/JavaScript built on XMLDSIGjs
19 lines (18 loc) • 614 B
TypeScript
import { Signature } from 'xmldsigjs';
import { UnsignedSignatureProperty } from './unsigned_signature_properties.js';
import { XadesObject } from './xml_base.js';
/**
* Represents the <CounterSignature> element of an XML signature.
*
* ```xml
* <xsd:element name="CounterSignature" type="CounterSignatureType"/>
* <xsd:complexType name="CounterSignatureType">
* <xsd:sequence>
* <xsd:element ref="ds:Signature"/>
* </xsd:sequence>
* </xsd:complexType>
* ```
*/
export declare class CounterSignature extends XadesObject implements UnsignedSignatureProperty {
Signature: Signature;
}