UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 672 B
import { Parameter, CertificateEntry } from "./../index"; export interface GlobalKeyStoreInterface { certificates?: Array<CertificateEntry>; keyStoreContent?: string; } export declare class GlobalKeyStore implements GlobalKeyStoreInterface, Parameter { certificates?: Array<CertificateEntry>; keyStoreContent?: string; constructor(data: any); static getCertificatesDefault(): Array<CertificateEntry>; static getCertificatesDescription(): string; static getKeyStoreContentDefault(): string; static getKeyStoreContentDescription(): string; static fromJson(data: any): GlobalKeyStore; toJson(): any; clone(): GlobalKeyStore; }