index.ts 279 B

1234567891011121314
  1. // Copyright (c) Jupyter Development Team.
  2. // Distributed under the terms of the Modified BSD License.
  3. export * from './widget';
  4. /**
  5. * The command IDs used by the landing plugin.
  6. */
  7. export
  8. namespace CommandIDs {
  9. export
  10. const open: string = 'landing-jupyterlab:open';
  11. };