mirror of
https://github.com/EvoMap/evolver.git
synced 2026-09-18 21:47:53 +08:00
7 lines
247 B
TypeScript
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 {}; |