import type { RuntimeContext } from '../action/types'; import type { RuntimeApp } from './createApp'; export type PluginContext = { app: RuntimeApp; }; export type Plugin = { name: string; setup?(context: PluginContext): void; createContext?(): Promise>; };