npm install my-extension-kit
// unique identifier of your extension
let id = "my-awesome-extension";
// create the extension
let v = new BaseExtension(id);
// registre ping command
v.register(new PingCmd(id))
export const [activate, deactivate] = v.finalize();
https://tmslpm.github.io/my-extension-kit/
See the license.md
↑↑↑ BACK TO TOP ↑↑↑