UNPKG

@voila-dashboards/jupyterlab-gridstack

Version:

A gridstack-based template for [![voila-gridstack](assets/voila.png)](https://github.com/voila-dashboards/voila).

20 lines (19 loc) 534 B
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; }