@betarena/ad-engine
Version:
Betarena ad-engine widget
41 lines (39 loc) • 728 B
TypeScript
import type { IAdsServiceTranslations } from "@betarena/scores-lib/types/ad-engine/index.js";
/**
* @author
* @migbash
* @summary
* 🔹 INTERFACE
*/
export interface IAdEngineSessionStore
{
/**
* @description
* 📝 Wether theme is dark
* @example
* :: false
* @default
* :: false
*/
isDarkTheme: boolean;
/**
* @description
* 📝 store data proerty (to be updated)
*/
data:
{
/**
* @description
* 📝 store data proerty (to be updated)
*/
translation: IAdsServiceTranslations['response']['success']['data'];
}
}
/**
* @description
* 📝 store data proerty (to be updated)
*/
type IAdEngineSessionDataProp =
| 'darkTheme'
| 'setTranslation';
;