UNPKG

442 BTypeScriptView Raw
1import { UniversalOptions } from '@pnpm/config';
2export declare function rcOptionsTypes(): {};
3export declare function cliOptionsTypes(): {};
4export declare const commandNames: string[];
5export declare function help(): string;
6export declare function handler(opts: Pick<UniversalOptions, 'dir'> & {
7 argv: {
8 original: string[];
9 };
10 engineStrict?: boolean;
11 npmPath?: string;
12 workspaceDir?: string;
13}): Promise<void>;