Files
2026-07-22 07:36:54 +00:00

7 lines
247 B
TypeScript

interface IssueReportDeps {
env?: Record<string, string | undefined>;
fetch?: typeof fetch;
now?: () => Date;
}
export declare function runIssueReportCommand(argv: readonly string[], deps?: IssueReportDeps): Promise<number>;
export {};