@verdaccio/config
Version:
logger
13 lines (12 loc) • 342 B
TypeScript
/// <reference types="node" />
export type SetupDirectory = {
path: string;
type: string;
};
/**
* Find and get the first config file that match.
* @return {String} the config file path
*/
declare function findConfigFile(configPath?: string): string;
export declare function readDefaultConfig(): Buffer;
export { findConfigFile };