@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 760 B
TypeScript
import { GroupRelation, CommentRelation, Parameter, MarkRelation, ReplyStateRelation } from "./../index";
export interface RelationMarkupInterface {
comment?: CommentRelation;
group?: GroupRelation;
mark?: MarkRelation;
state?: ReplyStateRelation;
}
export declare class RelationMarkup implements RelationMarkupInterface, Parameter {
comment?: CommentRelation;
group?: GroupRelation;
mark?: MarkRelation;
state?: ReplyStateRelation;
constructor(data: any);
static getCommentDescription(): string;
static getGroupDescription(): string;
static getMarkDescription(): string;
static getStateDescription(): string;
static fromJson(data: any): RelationMarkup;
toJson(): any;
clone(): RelationMarkup;
}