mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
declare module "can-ndjson-stream" {
|
|
function ndjsonStream<TValueType>(
|
|
body: ReadableStream<Uint8Array> | null,
|
|
): Promise<ReadableStream<TValueType>>
|
|
export default ndjsonStream
|
|
}
|