UNPKG

719 BTypeScriptView Raw
1import { Config } from '@pnpm/config';
2export declare type PublishRecursiveOpts = Required<Pick<Config, 'cliOptions' | 'dir' | 'rawConfig' | 'registries' | 'workspaceDir'>> & Partial<Pick<Config, 'tag' | 'ca' | 'cert' | 'extraBinPaths' | 'fetchRetries' | 'fetchRetryFactor' | 'fetchRetryMaxtimeout' | 'fetchRetryMintimeout' | 'httpsProxy' | 'key' | 'localAddress' | 'lockfileDir' | 'npmPath' | 'offline' | 'proxy' | 'selectedProjectsGraph' | 'storeDir' | 'strictSsl' | 'userAgent' | 'verifyStoreIntegrity'>> & {
3 access?: 'public' | 'restricted';
4 argv: {
5 original: string[];
6 };
7};
8export default function (opts: PublishRecursiveOpts & Required<Pick<Config, 'selectedProjectsGraph'>>): Promise<void>;