Files
INTUIA/Programa final/_internal/jupyterlab/tests/mock_packages/incompat/index.js
T
2026-03-15 13:27:50 +00:00

15 lines
363 B
JavaScript

// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
module.exports = [
{
id: 'mockextension',
autoStart: true,
activate: function (application) {
// eslint-disable-next-line no-console
console.log('mock extension activated');
window.commands = application.commands;
}
}
];