@mesh-tech/mesh-cli
Version:
CLI for Mesh platform development utilities
13 lines (12 loc) • 444 B
TypeScript
export declare const MESH_JSON = "mesh.json";
export interface MeshJson {
tenant: string;
platform: string;
}
export declare function isValidTenantName(value: string): boolean;
export declare function parseMeshJson(content: string): MeshJson | null;
export declare function findMeshJson(startDir: string): {
path: string;
data: MeshJson;
} | null;
export declare function writeMeshJson(rootDir: string, data: MeshJson): string;