UNPKG

actionhero

Version:

The reusable, scalable, and quick node.js API server for stateless and stateful applications

17 lines (16 loc) 365 B
import { Action, ParamsFrom } from "./../index"; export declare class CreateChatRoom extends Action { name: string; description: string; inputs: { name: { required: true; }; }; run({ params }: { params: ParamsFrom<CreateChatRoom>; }): Promise<{ name: string; didCreate: boolean; }>; }