UNPKG

wgutils

Version:

Tools for managing working groups

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