allons-y
Version:
Yet another JS/TS tools
14 lines (13 loc) • 321 B
TypeScript
import { type Command } from '../commands/index.js';
export type CommandArgs = {
from: string;
to: string;
day: string;
dayHours: number;
issueRegex?: string;
issueLink?: string;
out?: string;
outFormat?: string;
warning: boolean;
};
export declare const report: Command<CommandArgs>;