@steipete/terminator-mcp
Version:
MCP plugin to manage macOS terminal sessions.
21 lines (20 loc) • 1.01 kB
TypeScript
import { TerminatorOptions } from './types.js';
export declare function debugLog(message: string, ...args: any[]): void;
export declare function getEnvVar(key: string, defaultValue: string): string;
export declare function getEnvVarInt(key: string, defaultValue: number): number;
export declare function getEnvVarBool(key: string, defaultValue: boolean): boolean;
export declare const CURRENT_TERMINAL_APP: string;
export declare const DEFAULT_BACKGROUND_STARTUP_SECONDS: number;
export declare const DEFAULT_FOREGROUND_COMPLETION_SECONDS: number;
export declare const DEFAULT_LINES: number;
export declare const DEFAULT_FOCUS_ON_ACTION: boolean;
export declare const DEFAULT_BACKGROUND_EXECUTION: boolean;
export declare const PARAM_ALIASES: {
[key: string]: keyof TerminatorOptions;
};
export declare const ALIAS_PRIORITY_MAP: {
[key in keyof TerminatorOptions]?: string[];
};
export declare function getCanonicalOptions(rawOptions: {
[key: string]: any;
} | undefined): Partial<TerminatorOptions>;