@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
18 lines (17 loc) • 545 B
TypeScript
import { Parameter } from "./../index";
export interface MetadataPdfaInterface {
conformance?: string;
part?: string;
}
export declare class MetadataPdfa implements MetadataPdfaInterface, Parameter {
conformance?: string;
part?: string;
constructor(data: any);
static getConformanceDefault(): string;
static getConformanceDescription(): string;
static getPartDefault(): string;
static getPartDescription(): string;
static fromJson(data: any): MetadataPdfa;
toJson(): any;
clone(): MetadataPdfa;
}