@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 460 B
TypeScript
import { Parameter } from "./../index";
export interface LoginOptionsInterface {
createRefreshToken?: boolean;
}
export declare class LoginOptions implements LoginOptionsInterface, Parameter {
createRefreshToken?: boolean;
constructor(data: any);
static getCreateRefreshTokenDefault(): boolean;
static getCreateRefreshTokenDescription(): string;
static fromJson(data: any): LoginOptions;
toJson(): any;
clone(): LoginOptions;
}