gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
9 lines (8 loc) • 407 B
TypeScript
import { ApiException } from './apiException';
import { Select } from './select';
import { SelectResponse } from './selectResponse';
import { SoapClient } from '../../soap/soapClient';
export interface PublisherQueryLanguageService extends SoapClient {
select(select: Select): Promise<SelectResponse>;
select(select: Select, cb: (err: ApiException, selectResponse: SelectResponse) => void): void;
}