UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

11 lines (10 loc) 528 B
import { DfpDate } from '../soap/dfpDate'; import { DfpDateTime } from '../soap/dfpDateTime'; export declare module DateTimeUtils { function toDfpDate(date: Date): DfpDate; function toDfpDateTime(date: Date): DfpDateTime; function toDfpDateTimeFromString(dateTime: string): DfpDateTime; function fromDfpDateTime(dfpDateTime: DfpDateTime, offset?: number | string): Date; function toDateString(dfpDate: DfpDate): string; function toISOString(dfpDateTime: DfpDateTime, offset?: number | string): string; }