index.ts 422 Bytes
Newer Older
bellship24's avatar
bellship24 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import {
  JupyterFrontEnd,
  JupyterFrontEndPlugin
} from '@jupyterlab/application';

/**
 * Initialization data for the jupyterlab-minio-browser  extension.
 */
const plugin: JupyterFrontEndPlugin<void> = {
  id: 'jupyterlab-minio-browser :plugin',
  autoStart: true,
  activate: (app: JupyterFrontEnd) => {
    console.log('JupyterLab extension jupyterlab-minio-browser  is activated!');
  }
};

export default plugin;