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

13 lines
358 B
Plaintext

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;