import { App } from './app-info.interface'; export interface AppSlice { offset: number; limit: number; /** * Mini app's ZaloAppId is being filtered. * It is only available when using version 2. */ zaloAppId?: string; } export interface VersionSlice { miniAppId: string; offset: number; limit: number; } export interface AppList { total: number; apps: App[]; }