11 lines
307 B
TypeScript
Executable File
11 lines
307 B
TypeScript
Executable File
import { NullChannel } from './null-channel';
|
|
/**
|
|
* This class represents a null private channel.
|
|
*/
|
|
export declare class NullPrivateChannel extends NullChannel {
|
|
/**
|
|
* Send a whisper event to other clients in the channel.
|
|
*/
|
|
whisper(eventName: string, data: any): NullPrivateChannel;
|
|
}
|