UNPKG

socketio-class-controllers

Version:

Use class-based controllers to handle websocket events

21 lines (20 loc) 385 B
import { ResultType } from "../types/ResultTypes"; import { ClassTransformOptions } from "class-transformer"; /** */ export interface ResultMetadataArgs { /** */ value?: string; /** */ target: Function; /** */ method: string; /** * Result handler type. */ type: ResultType; classTransformOptions?: ClassTransformOptions; }