mirror of
https://github.com/sern-handler/website
synced 2026-06-24 08:42:31 +00:00
13 lines
358 B
TypeScript
13 lines
358 B
TypeScript
import { RAL } from '../common/api';
|
|
interface RIL extends RAL {
|
|
readonly stream: {
|
|
readonly asReadableStream: (stream: WebSocket) => RAL.ReadableStream;
|
|
readonly asWritableStream: (stream: WebSocket) => RAL.WritableStream;
|
|
};
|
|
}
|
|
declare function RIL(): RIL;
|
|
declare namespace RIL {
|
|
function install(): void;
|
|
}
|
|
export default RIL;
|