@clearcodehq/openrtb
Version:
Library with OpenRTB spec types which allows to build and validate OpenRTB objects
21 lines (20 loc) • 1.11 kB
JavaScript
;
// Copyright (C) 2021 by Clearcode <https://clearcode.cc>
// and associates (see AUTHORS).
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExpandableDirection = exports.BannerAdType = void 0;
var BannerAdType;
(function (BannerAdType) {
BannerAdType[BannerAdType["XHTMLTextAd"] = 1] = "XHTMLTextAd";
BannerAdType[BannerAdType["XHTMLBannerAd"] = 2] = "XHTMLBannerAd";
BannerAdType[BannerAdType["JavaScriptAd"] = 3] = "JavaScriptAd";
BannerAdType[BannerAdType["Iframe"] = 4] = "Iframe";
})(BannerAdType = exports.BannerAdType || (exports.BannerAdType = {}));
var ExpandableDirection;
(function (ExpandableDirection) {
ExpandableDirection[ExpandableDirection["Left"] = 1] = "Left";
ExpandableDirection[ExpandableDirection["Right"] = 2] = "Right";
ExpandableDirection[ExpandableDirection["Up"] = 3] = "Up";
ExpandableDirection[ExpandableDirection["Down"] = 4] = "Down";
ExpandableDirection[ExpandableDirection["FullScreen"] = 5] = "FullScreen";
})(ExpandableDirection = exports.ExpandableDirection || (exports.ExpandableDirection = {}));