/**
 * @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;
}