UNPKG

revit-cli

Version:

A scalable CLI tool for Revit communication and data manipulation

13 lines 448 B
/** * List rooms command implementation * Handles room listing with various display options */ import { Command } from 'commander'; import { CLIState } from '../../cli/initializer.js'; /** * Creates the list-rooms command * @param getState - Function to get CLI state * @returns Commander command instance */ export declare function createListRoomsCommand(getState: () => Promise<CLIState>): Command; //# sourceMappingURL=list-rooms.d.ts.map