@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 800 B
TypeScript
import { Parameter, LogConfigurationMode } from "./../index";
export interface LogFileConfigurationInterface {
debugMode?: LogConfigurationMode;
log4j2Xml?: string;
updateXml?: boolean;
}
export declare class LogFileConfiguration implements LogFileConfigurationInterface, Parameter {
debugMode?: LogConfigurationMode;
log4j2Xml?: string;
updateXml?: boolean;
constructor(data: any);
static getDebugModeDefault(): LogConfigurationMode;
static getDebugModeDescription(): string;
static getLog4j2XmlDefault(): string;
static getLog4j2XmlDescription(): string;
static getUpdateXmlDefault(): boolean;
static getUpdateXmlDescription(): string;
static fromJson(data: any): LogFileConfiguration;
toJson(): any;
clone(): LogFileConfiguration;
}