import type { CloudpackCommand } from '../utilities/CloudpackCommand.js'; /** * Initialize a command object for a sub-command. * This is the type for the `init` function exported by each `src/commands//index.ts` module. * @param program Command object for the program. */ export type CommandInitFunction = (program: CloudpackCommand) => void; /** * Type for each `src/commands//index.ts` module. */ export type CommandInitModule = { init: CommandInitFunction; }; //# sourceMappingURL=CommandInitFunction.d.ts.map