@jupyterlab/settingregistry
Version:
Settings registry for Jupyterlab
12 lines • 615 B
JavaScript
/* -----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Distributed under the terms of the Modified BSD License.
|----------------------------------------------------------------------------*/
import { Token } from '@lumino/coreutils';
/**
* The setting registry token.
*/
export const ISettingRegistry = new Token('@jupyterlab/coreutils:ISettingRegistry', `A service for the JupyterLab settings system.
Use this if you want to store settings for your application.
See "schemaDir" for more information.`);
//# sourceMappingURL=tokens.js.map