import type { Niche } from './niche'; export const AdSpotType = { Primary: 0, Secondary: 1, } as const; export type AdSpotType = typeof AdSpotType[keyof typeof AdSpotType]; export type AdsConfigType = Partial>>; export const AdBannerType = { NativeBottom: 'NativeBottom', NativePlayer: 'NativePlayer', NTV: 'NTV', } as const; export type AdBannerType = typeof AdBannerType[keyof typeof AdBannerType];