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