blob: 4c8dff6177431ab59307f0289198be41383af1a6 [file] [edit]
import { Namespace } from "./namespace";
import type { Server } from "./index";
export declare class ParentNamespace extends Namespace {
private static count;
private children;
constructor(server: Server);
/**
* @private
*/
_initAdapter(): void;
emit(ev: string | Symbol, ...args: [...any]): true;
createChild(name: string): Namespace;
}