Files
2026-02-05 15:27:49 +08:00

14 lines
329 B
TypeScript

import { CommandModule } from "yargs";
type PullCommand = {
urls: string[];
header?: string[];
override: boolean;
noProgress: boolean;
noTempFile: boolean;
directory: string;
filename?: string;
parallel?: number;
};
export declare const PullCommand: CommandModule<object, PullCommand>;
export {};