UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 404 B
import { Parameter } from "./../index"; export interface UserCheckInterface { checkType: string; } export declare class UserCheck implements UserCheckInterface, Parameter { checkType: string; constructor(data: any); static getCheckTypeDefault(): string; static getCheckTypeDescription(): string; static fromJson(data: any): UserCheck; toJson(): any; clone(): UserCheck; }