@fanoutio/grip
Version:
GRIP Interface Library
9 lines • 369 B
TypeScript
import { type IWebSocketEvent } from './IWebSocketEvent.js';
export declare class WebSocketEvent implements IWebSocketEvent {
type: string;
content: Uint8Array | string | null;
constructor(type: string, content?: Uint8Array | string | null);
getType(): string;
getContent(): string | Uint8Array | null;
}
//# sourceMappingURL=WebSocketEvent.d.ts.map