react-native-theoplayer
Version:
A THEOplayer video component for react-native.
35 lines • 677 B
TypeScript
/**
* The type of the interstitial.
*
* @category Ads
* @category THEOads
* @public
*/
export type InterstitialType = 'adbreak' | 'overlay';
/**
* The THEOads interstitial.
*
* @category Ads
* @category THEOads
* @public
*/
export interface Interstitial {
/**
* The type of the interstitial.
*/
type: InterstitialType;
/**
* The identifier of the interstitial.
*/
id: string;
/**
* The start time at which the interstitial will start.
*/
startTime: number;
/**
* The duration of the interstitial, in seconds.
*
*/
duration: number | undefined;
}
//# sourceMappingURL=Interstitial.d.ts.map