UNPKG

furystack-core

Version:
11 lines (10 loc) 385 B
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>; }