import { Dispatch } from 'react'; import { IWindow } from './miniAppContext'; type ActionType = 'UPDATE_WINDOW'; export interface Action { type: ActionType; } export interface UpdateWindowAction extends Action { payload: IWindow; } export type MiniAppActionType = Action & UpdateWindowAction; export type DispatchType = Dispatch;