vibe-tools
Version:
CLI tools for AI agents
9 lines (8 loc) • 312 B
TypeScript
import type { Command, CommandGenerator } from '../../types.ts';
import { type GithubOptions } from './utils.ts';
export declare class IssueCommand implements Command {
constructor();
private fetchComments;
private formatDate;
execute(query: string, options?: GithubOptions): CommandGenerator;
}