massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-json / node_modules / vscode-jsonrpc / lib / node / ril.d.ts
1 /// <reference types="node" />
2 import RAL from '../common/ral';
3 interface RIL extends RAL {
4     readonly stream: {
5         readonly asReadableStream: (stream: NodeJS.ReadableStream) => RAL.ReadableStream;
6         readonly asWritableStream: (stream: NodeJS.WritableStream) => RAL.WritableStream;
7     };
8 }
9 declare function RIL(): RIL;
10 declare namespace RIL {
11     function install(): void;
12 }
13 export default RIL;