mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
12 lines
314 B
TypeScript
12 lines
314 B
TypeScript
import { LensMainExtension } from "@lens/extensions";
|
|
|
|
export default class ExampleExtensionMain extends LensMainExtension {
|
|
onActivate() {
|
|
console.log('EXAMPLE EXTENSION MAIN: ACTIVATED', this.getMeta());
|
|
}
|
|
|
|
onDeactivate() {
|
|
console.log('EXAMPLE EXTENSION MAIN: DEACTIVATED', this.getMeta());
|
|
}
|
|
}
|