UNPKG

google-adwords-node

Version:
14 lines (13 loc) 372 B
import { StringOrNull } from '../core'; interface IAddressRaw { streetAddress: StringOrNull; streetAddress2: StringOrNull; cityName: StringOrNull; provinceCode: StringOrNull; provinceName: StringOrNull; postalCode: StringOrNull; countryCode: StringOrNull; } interface IAddress extends Partial<IAddressRaw> { } export { IAddressRaw, IAddress };