8 lines
107 B
TypeScript
8 lines
107 B
TypeScript
/**
|
|
* @publicApi
|
|
*/
|
|
export interface WebSocketServerOptions {
|
|
port: number;
|
|
namespace: string;
|
|
}
|