UNPKG

fastlion-amis

Version:

一种MIS页面生成工具

15 lines (14 loc) 496 B
import { IRootStore } from '../store/root'; import { RendererEvent } from '../utils/renderer-event'; import { Action, ListenerAction, ListenerContext } from './Action'; /** * 发送请求动作 * * @export * @class AjaxAction * @implements {Action} */ export declare class AjaxAction implements Action { run(action: ListenerAction, renderer: ListenerContext, event: RendererEvent<any>): Promise<void>; openFeedback(dialog: any, store: IRootStore): Promise<unknown>; }