UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

23 lines (22 loc) 566 B
/** @internal */ export declare class EncryptedInfo { private thumbprint; private attributes; private signedFiles; constructor(thumbprint: string); get Thumbprint(): string; get Attributes(): Array<EncryptedAttribute>; set SignedFiles(value: any); get SignedFiles(): any; clone(): EncryptedInfo; } /** @internal */ export declare class EncryptedAttribute { private name; private value; private oid; constructor(oid: string, value: string); get Oid(): string; get Name(): string; get Value(): string; }