// Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. export * from './model'; export * from './widget'; /** * The command IDs used by the tooltip plugin. */ export namespace CommandIDs { export const launch = 'tooltip:launch'; export const remove = 'tooltip:remove'; };