@voila-dashboards/jupyterlab-gridstack
Version:
A gridstack-based template for [](https://github.com/voila-dashboards/voila).
20 lines (19 loc) • 534 B
TypeScript
import { ReactWidget } from '@jupyterlab/apputils';
import { DashboardView } from '../format';
/**
* A ReactWidget to edit the dashboard notebook metadata.
*/
export declare class DashboardMetadataEditor extends ReactWidget {
/**
* Construct a `DashboardMetadataEditor`.
*
* @param info - The `DashboardView` info.
*/
constructor(info: DashboardView);
/**
* Getter to obtain the new dashboard metadata info.
*/
get info(): DashboardView;
render(): JSX.Element;
private _info;
}