@khulnasoft.com/dev-tools
Version:
Development tools for Khulnasoft CMS integration
5 lines (4 loc) • 306 B
TypeScript
/// <reference types="node" />
import type { DevToolsServerContext } from "../types";
import type { IncomingMessage, Server, ServerResponse } from "http";
export declare function handleDevRequest(ctx: DevToolsServerContext | null, server: Server, req: IncomingMessage, res: ServerResponse): Promise<void>;