| 39 | } |
| 40 | |
| 41 | export interface DecoderStream { |
| 42 | write(buf: Buffer): string; |
| 43 | end(): string | undefined; |
| 44 | } |
| 45 | |
| 46 | export interface Codec { |
| 47 | encoder: new (options?: EncodeOptions, codec?: Codec) => EncoderStream; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…