UNPKG

xadesjs

Version:

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

31 lines (30 loc) 1.02 kB
import { SignedDataObjectProperties } from './signed_data_object_properties.js'; import { SignedSignatureProperties } from './signed_signature_properties.js'; import { XadesObject } from './xml_base.js'; /** * Represents the <SignedProperties> element of an XML signature. * * ```xml * <xsd:element name="SignedProperties" type="SignedPropertiesType"/> * <xsd:complexType name="SignedPropertiesType"> * <xsd:sequence> * <xsd:element * name="SignedSignatureProperties" * type="SignedSignaturePropertiesType" * minOccurs="0" * /> * <xsd:element * name="SignedDataObjectProperties" * type="SignedDataObjectPropertiesType" * minOccurs="0" * /> * </xsd:sequence> * <xsd:attribute name="Id" type="xsd:ID" use="optional"/> * </xsd:complexType> * ``` */ export declare class SignedProperties extends XadesObject { Id: string; SignedSignatureProperties: SignedSignatureProperties; SignedDataObjectProperties: SignedDataObjectProperties; }