UNPKG

revit-cli

Version:

A scalable CLI tool for Revit communication and data manipulation

16 lines 549 B
"use strict"; /** * Room-related commands for the Revit CLI * Refactored to use modular architecture for better maintainability */ Object.defineProperty(exports, "__esModule", { value: true }); exports.registerRoomCommands = registerRoomCommands; const index_1 = require("./room/index"); /** * Register room-related CLI commands */ function registerRoomCommands(program, getState) { // Delegate to the modular room commands implementation (0, index_1.registerRoomCommands)(program, getState); } //# sourceMappingURL=room-commands.js.map