UNPKG

socket.io-ts-controllers

Version:
14 lines (13 loc) 360 B
/** * Controller metadata used to storage information about registered controller. */ export interface SocketControllerMetadataArgs { /** * Indicates object which is used by this controller. */ target: Function; /** * Extra namespace in which this controller's events will be registered. */ namespace?: string | RegExp; }