/** * Named constants for the ads package. * * Centralising magic numbers here makes thresholds and limits easy to audit * and change without hunting through implementation files. */ /** Seconds before ad end at which the skip button becomes active. */ export declare const SKIP_NEAR_END_THRESHOLD_S = 0.05; /** Delta used to seek the ad video to "near end" when skip is triggered. */ export declare const SEEK_NEAR_END_DELTA_S = 0.001; /** Fallback display duration (seconds) when VAST provides no minSuggestedDuration. */ export declare const NON_LINEAR_DEFAULT_DURATION_S = 10; /** Polling interval (ms) used by dismissNonLinear to check whether the overlay is empty. */ export declare const NON_LINEAR_POLL_INTERVAL_MS = 50; /** Default iframe width (px) used as fallback when DOM layout is unavailable. */ export declare const SIMID_DEFAULT_WIDTH_PX = 640; /** Default iframe height (px) used as fallback when DOM layout is unavailable. */ export declare const SIMID_DEFAULT_HEIGHT_PX = 360; //# sourceMappingURL=constants.d.ts.map