@busy-hour/blaze
Version:
<h1 align='center'>🔥 Blaze</h1> <div align='center'> An event driven framework for 🔥 Hono.js </div>
11 lines (10 loc) • 398 B
TypeScript
import type { Action } from '../types/action';
import type { Random } from '../types/common';
import type { CreateActionOption } from '../types/service';
export declare class BlazeServiceAction {
readonly serviceName: string;
readonly actionName: string;
readonly action: Action;
constructor(options: CreateActionOption);
actionHandler(...values: Random[]): Promise<unknown>;
}