smc-hub
Version:
CoCalc: Backend webserver component
11 lines (10 loc) • 310 B
TypeScript
declare type ProxyType = "port" | "raw" | "server";
export declare function parseReq(url: string, // with base_path removed (url does start with /)
remember_me?: string): {
key: string;
type: ProxyType;
project_id: string;
port_desc: string;
internal_url: string | undefined;
};
export {};