@betarena/ad-engine
Version:
Betarena ad-engine widget
19 lines • 354 B
TypeScript
/**
* @author
* @migbash
* @summary
* 🔹 INTERFACE
*/
export interface IAdEngineStore
{
/**
* @description
* 📝 Wether target `advert` has been shown for the `24h`
*/
isBetarenaAdShownForToday: boolean;
/**
* @description
* 📝 Last `timestamp (date)` of shown advert and closed
*/
advertDateLastShown: Date | null;
}