@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
29 lines (28 loc) • 986 B
TypeScript
import { Parameter } from "./../index";
export interface ThreadActionGoToThreadInterface {
beadIndex?: number;
page?: number;
threadIndex?: number;
threadTitle?: string;
}
export declare class ThreadActionGoToThread implements ThreadActionGoToThreadInterface, Parameter {
beadIndex?: number;
page?: number;
threadIndex?: number;
threadTitle?: string;
constructor(data: any);
static getBeadIndexDefault(): number;
static getBeadIndexDescription(): string;
static getBeadIndexMin(): number;
static getPageDefault(): number;
static getPageDescription(): string;
static getPageMin(): number;
static getThreadIndexDefault(): number;
static getThreadIndexDescription(): string;
static getThreadIndexMin(): number;
static getThreadTitleDefault(): string;
static getThreadTitleDescription(): string;
static fromJson(data: any): ThreadActionGoToThread;
toJson(): any;
clone(): ThreadActionGoToThread;
}