dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 343 B
TypeScript
import { Value } from '../../dfp/soap/value';
import { StringValueMapEntry } from '../../dfp/soap/stringValueMapEntry';
export declare module MapUtils {
function getMap(mapEntries: StringValueMapEntry[]): {
[id: string]: Value;
};
function getMapEntries(map: {
[id: string]: Value;
}): StringValueMapEntry[];
}