import { Size } from './Size' export enum EnvironmentType { BROWSER = 'BROWSER', VIDEO_PLAYER = 'VIDEO_PLAYER', } /** * adUnitSizes * @targetNSAlias `tns` * @targetNamespace `https://www.google.com/apis/ads/publisher/v202511` */ export interface AdUnitSizes { /** size */ size?: Size /** EnvironmentType|xsd:string|BROWSER,VIDEO_PLAYER */ environmentType?: EnvironmentType | keyof typeof EnvironmentType /** companions[] */ companions?: Array /** xsd:string */ fullDisplayString?: string /** xsd:boolean */ isAudio?: boolean }