Files
ide/theia-extensions/gitzone-remote/lib/browser/gitzone-remote-frontend-module.d.ts
2026-05-10 14:08:25 +00:00

18 lines
961 B
TypeScript

import { CommandContribution, CommandRegistry } from '@theia/core/lib/common/command.js';
import { MenuContribution, MenuModelRegistry } from '@theia/core/lib/common/menu/menu-model-registry.js';
import { MessageService } from '@theia/core/lib/common/message-service.js';
import { ContainerModule } from '@theia/core/shared/inversify/index.js';
import { type IGitZoneRemoteServer } from '../common/gitzone-remote-protocol.js';
export declare const GitZoneRemoteEnvironmentCommand: {
id: string;
label: string;
};
export declare class GitZoneRemoteContribution implements CommandContribution, MenuContribution {
protected readonly remoteServer: IGitZoneRemoteServer;
protected readonly messages: MessageService;
registerCommands(registry: CommandRegistry): void;
registerMenus(menus: MenuModelRegistry): void;
}
declare const _default: ContainerModule;
export default _default;
//# sourceMappingURL=gitzone-remote-frontend-module.d.ts.map