@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
26 lines (25 loc) • 991 B
TypeScript
import { Parameter, RelativeThreeDViewOperation, AnnotationSelection } from "./../index";
export interface GoTo3DViewActionGoTo3DViewInterface {
annotation: AnnotationSelection;
index?: number;
name?: string;
relative?: RelativeThreeDViewOperation;
}
export declare class GoTo3DViewActionGoTo3DView implements GoTo3DViewActionGoTo3DViewInterface, Parameter {
annotation: AnnotationSelection;
index?: number;
name?: string;
relative?: RelativeThreeDViewOperation;
constructor(data: any);
static getAnnotationDescription(): string;
static getIndexDefault(): number;
static getIndexDescription(): string;
static getIndexMin(): number;
static getNameDefault(): string;
static getNameDescription(): string;
static getRelativeDefault(): RelativeThreeDViewOperation;
static getRelativeDescription(): string;
static fromJson(data: any): GoTo3DViewActionGoTo3DView;
toJson(): any;
clone(): GoTo3DViewActionGoTo3DView;
}