UNPKG

nodejs-google-adwords

Version:
19 lines (18 loc) 414 B
import { IDisplayAttribute } from './LabelAttribute'; declare namespace Label { enum status { ENABLED = "ENABLED", REMOVED = "REMOVED", UNKNOWN = "UNKNOWN" } } interface ILabel { id?: string; name: string; status?: Label.status; attribute: IDisplayAttribute; 'Label.Type'?: string; } interface ITextLabel extends ILabel { } export { ILabel, Label, ITextLabel };