jupyterlab-slurm
Version:
A JupyterLab extension to interface with the Slurm workload manager.
13 lines (12 loc) • 381 B
TypeScript
declare namespace types {
type Request = {
route: string;
method: string;
query?: string;
body?: string | FormData | URLSearchParams;
beforeResponse?: () => any[];
afterResponse?: (response: Response, ...args: any[]) => Promise<any>;
};
}
export declare function makeRequest(request: types.Request): Promise<any>;
export {};