UNPKG

xadesjs

Version:

XML Advanced Electronic Signatures (XAdES) implementation in TypeScript/JavaScript built on XMLDSIGjs

17 lines (16 loc) 571 B
import { XadesObject } from './xml_base.js'; /** * Represents the <QualifyingPropertiesReference> element of an XML signature. * * ```xml * <xsd:element name="QualifyingPropertiesReference" type="QualifyingPropertiesReferenceType"/> * <xsd:complexType name="QualifyingPropertiesReferenceType"> * <xsd:attribute name="URI" type="xsd:anyURI" use="required"/> * <xsd:attribute name="Id" type="xsd:ID" use="optional"/> * </xsd:complexType> * ``` */ export declare class QualifyingPropertiesReference extends XadesObject { Uri: string; Id: string; }