@fanoutio/grip
Version:
GRIP Interface Library
11 lines • 439 B
TypeScript
import { type IFormat } from '../IFormat.js';
import { type IFormatExport } from '../IFormatExport.js';
export declare class WebSocketMessageFormat implements IFormat {
content: string | Uint8Array | null;
close: boolean;
code?: number;
constructor(content?: Uint8Array | string | null, close?: boolean, code?: number);
name(): string;
export(): IFormatExport;
}
//# sourceMappingURL=WebSocketMessageFormat.d.ts.map