UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 544 B
import { Parameter } from "./../index"; export interface MarkRelationInterface { marked?: boolean; objectID?: string; } export declare class MarkRelation implements MarkRelationInterface, Parameter { marked?: boolean; objectID?: string; constructor(data: any); static getMarkedDefault(): boolean; static getMarkedDescription(): string; static getObjectIDDefault(): string; static getObjectIDDescription(): string; static fromJson(data: any): MarkRelation; toJson(): any; clone(): MarkRelation; }