twenty-mcp-server
Version:
Easy-to-install Model Context Protocol server for Twenty CRM. Try instantly with 'npx twenty-mcp-server setup' or install globally for permanent use.
22 lines • 981 B
TypeScript
import { SpawnOptions } from 'child_process';
export declare function isWindows(): boolean;
export declare function isMacOS(): boolean;
export declare function isLinux(): boolean;
export declare function getPlatformName(): string;
export declare function crossPlatformSpawn(command: string, args?: string[], options?: SpawnOptions): import("child_process").ChildProcess;
export declare function killProcess(process: any, signal?: string): void;
export declare function getPlatformConfigDir(): string;
export declare function getExecutableExtension(): string;
export declare function getScriptExtension(): string;
export declare function getPlatformPathExamples(): {
configPath: string;
installPath: string;
separator: string;
};
export declare function isElevated(): boolean;
export declare function getPlatformInstallInstructions(): {
globalInstall: string[];
localInstall: string[];
prerequisites: string[];
};
//# sourceMappingURL=platform-utils.d.ts.map