UNPKG

nodejs-google-adwords

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