UNPKG

wgutils

Version:

Tools for managing working groups

9 lines (8 loc) 278 B
import type { Argv } from "yargs"; import type { ArgsFromOptions } from "../../interfaces.js"; export declare function options(yargs: Argv): Argv<{ year: string; } & { month: string; }>; export declare function run(args: ArgsFromOptions<typeof options>): Promise<void>;