furystack-core
Version:
FuryStack framework, Core package
11 lines (10 loc) • 385 B
TypeScript
import { CustomAction } from "../";
import { RequestMethod } from "../api/http-models/RequestMethod";
export declare class ActionOwnerAbstract {
private customActions;
CustomAction<TBody, TReturns>(name: string, requestType?: RequestMethod, bodyType?: {
new (): TBody;
}, returnsType?: {
new (): TReturns;
}): CustomAction<TBody, TReturns>;
}