xadesjs
Version:
XML Advanced Electronic Signatures (XAdES) implementation in TypeScript/JavaScript built on XMLDSIGjs
21 lines (20 loc) • 763 B
TypeScript
import { CertIDList } from './signing_certificate.js';
import { UnsignedSignatureProperty } from './unsigned_signature_properties.js';
import { XadesObject } from './xml_base.js';
/**
* Represents the <CompleteCertificateRefs> element of an XML signature.
*
* ```xml
* <xsd:element name="CompleteCertificateRefs" type="CompleteCertificateRefsType"/>
* <xsd:complexType name="CompleteCertificateRefsType">
* <xsd:sequence>
* <xsd:element name="CertRefs" type="CertIDListType"/>
* </xsd:sequence>
* <xsd:attribute name="Id" type="xsd:ID" use="optional"/>
* </xsd:complexType>
* ```
*/
export declare class CompleteCertificateRefs extends XadesObject implements UnsignedSignatureProperty {
Id: string;
CertRefs: CertIDList;
}