UNPKG

nodejs-google-adwords

Version:
8 lines (7 loc) 274 B
import { IListReturnValue } from './abstract/ListReturnValue'; import { ICampaign } from './Campaign'; import { IApiError } from './ApiError'; export interface ICampaignReturnValue extends IListReturnValue { value: ICampaign[]; partialFailureErrors?: IApiError[]; }