mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
18 lines
428 B
TypeScript
18 lines
428 B
TypeScript
import { LensExtension } from "./lens-extension"
|
|
import type { MenuRegistry } from "./registries/menu-registry";
|
|
import type { StatusBarRegistry } from "./registries/status-bar-registry";
|
|
|
|
export class LensMainExtension extends LensExtension {
|
|
registerAppMenus(registry: MenuRegistry) {
|
|
//
|
|
}
|
|
|
|
registerStatusBarItem(registry: StatusBarRegistry) {
|
|
//
|
|
}
|
|
|
|
registerPrometheusProviders(registry: any) {
|
|
//
|
|
}
|
|
}
|