dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
26 lines (25 loc) • 667 B
TypeScript
import { IOAuth2HandlerConstructor } from '../common/util/iOAuth2Handler';
import { IRequestHandlerConstructor } from '../common/util/iRequestHandler';
export declare module DfpSettings {
const LOGGING: {
LIB_LOG_DIR_PATH: string;
};
const SERVER: {
VERSION: string;
HOST: string;
};
const SOAP: {
WSDL_CACHE: number;
REQUEST_HANDLER_CLASS: IRequestHandlerConstructor;
};
const PROXY: {
HOST: string;
PORT: string;
USER: string;
PASSWORD: string;
};
const AUTH: {
AUTH_SERVER: string;
OAUTH2_HANDLER_CLASS: IOAuth2HandlerConstructor;
};
}