astro-ghostcms/.pnpm-store/v3/files/5c/2d74f2ad71df757fbf21c059cab...

13 lines
358 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
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;