UNPKG

@sodacore/ws

Version:

Sodacore ws is a core plugin that extends the Http plugin offering WebSocket support to the Sodacore framework.

13 lines 438 B
import { type IPlugin, type Application, BasePlugin } from '@sodacore/core'; import type { IConfig } from '../types'; export default class WsPlugin extends BasePlugin implements IPlugin { protected config: IConfig; name: any; version: any; description: any; author: any; dependencies: string[]; constructor(config?: IConfig); install(app: Application): Promise<void>; } //# sourceMappingURL=plugin.d.ts.map