CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
RespStreamingDecoder.d.ts13 linesDownload Raw Back to resp
1import { StreamingReader } from '@jsonjoy.com/buffers/lib/StreamingReader';2import { RespDecoder } from './RespDecoder';3export declare class RespStreamingDecoder {4    protected readonly reader: StreamingReader;5    protected readonly decoder: RespDecoder<StreamingReader>;6    get tryUtf8(): boolean;7    set tryUtf8(value: boolean);8    push(uint8: Uint8Array): void;9    read(): unknown | undefined;10    readCmd(): [cmd: string, ...args: Uint8Array[]] | undefined;11    skip(): null | undefined;12}13 
basant307/AI_Governance_Project · CoolFace