jupyterlab-slurm
Version:
A JupyterLab extension to interface with the Slurm workload manager.
17 lines (16 loc) • 394 B
TypeScript
import { Component } from 'react';
declare namespace types {
type Props = {
options: string[];
onChange?: (string: any) => void;
};
type State = {
value: string;
};
}
export default class Select extends Component<types.Props, types.State> {
constructor(props: types.Props);
handleChange(event: any): void;
render(): JSX.Element;
}
export {};