import type { AxiosPromise } from "axios"; import type { ProcInstReq, FlowProcInstPage, FlowProcInstKey, FlowProcInstModel } from "../task/types"; import type { EntityApi } from "jmash-core"; export interface DoneInstApi extends EntityApi { getKey(model: FlowProcInstModel): FlowProcInstKey; findPage(req: ProcInstReq): AxiosPromise; }