UNPKG

revit-cli

Version:

A scalable CLI tool for Revit communication and data manipulation

13 lines 454 B
/** * Select rooms command implementation * Handles room selection and filtering operations */ import { Command } from 'commander'; import { CLIState } from '../../cli/initializer.js'; /** * Creates the select-rooms command * @param getState - Function to get CLI state * @returns Commander command instance */ export declare function createSelectRoomsCommand(getState: () => Promise<CLIState>): Command; //# sourceMappingURL=select-rooms.d.ts.map