UNPKG

@clearcodehq/openrtb

Version:

Library with OpenRTB spec types which allows to build and validate OpenRTB objects

8 lines (7 loc) 173 B
import { Extensible } from './common'; import { Bid } from './bid'; export interface SeatBid extends Extensible { seat?: string; package?: number; bid: Bid[]; }