/** * Fleet-style issue selections — `1,2,3`, `1..9`, or mixed `1,2,5..8`. * * The grammar is `imboard-ai/git/fleet-cycle`'s, so an operator can paste the selection * they dispatched a fleet with straight into a command that measures it. */ /** * Most issues a single selection may expand to. * * Each issue costs a `gh` round trip, so a mistyped range (`1..10000`, or `1..99` written * `1..999`) would sit there firing thousands of requests before anyone noticed. The cap * turns that into an immediate, named error. */ export declare const MAX_ISSUE_SELECTION = 200; /** * Expand an issue selection into a sorted, de-duplicated list. * * @throws Error naming the offending token, so a typo in one of nine terms is not reported * as a failure of the whole selection. The message carries its own `Fix:` line. */ export declare function parseIssueSelection(raw: string): number[]; //# sourceMappingURL=issue-selection.d.ts.map