index.ts 334 B

123456789101112131415161718
  1. // Copyright (c) Jupyter Development Team.
  2. // Distributed under the terms of the Modified BSD License.
  3. export * from './model';
  4. export * from './widget';
  5. /**
  6. * The command IDs used by the tooltip plugin.
  7. */
  8. export
  9. namespace CommandIDs {
  10. export
  11. const launch = 'tooltip:launch';
  12. export
  13. const remove = 'tooltip:remove';
  14. };