@mesh-tech/mesh-cli
Version:
CLI for Mesh platform development utilities
13 lines (12 loc) • 391 B
TypeScript
export interface AddressableService {
port: number;
command?: string[];
env?: Record<string, {
value: string;
}>;
}
export interface AddressableOutput {
services?: Record<string, AddressableService>;
}
export declare function clusterHostPattern(serviceName: string): RegExp;
export declare function rewriteClusterHostsToLocal(devOutput: AddressableOutput): void;