#!/usr/bin/env node /** * @module rli * * request line interface - may sound a silly name, but we're moving on from * command line interfaces to more flexible, natural language systems, yes? that * means things like synonyms and the like, let alone if you're just resorting * to an ai model. in which case, why not be polite? * * This module is for the interpreting of the incoming args when this package is * executed from the request line (bash, zsh, etc.). * * I am leaving this not even remotely finished atow, as this could easily be * extended with the given structure by another programmer (or llm probably for * that matter). */ export declare function execRCLI(): Promise; //# sourceMappingURL=rcli.d.mts.map