dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 436 B
TypeScript
import { Value } from '../soap/value';
import { Row } from '../soap/row';
import { ResultSet } from '../soap/resultSet';
export declare module Pql {
function createValue(value: any): Value;
function toString(value: Value): string;
function getColumnLabels(resultSet: ResultSet): string[];
function getRowStringValues(row: Row): string[];
function combineResultSets(first: ResultSet, second: ResultSet): ResultSet;
}