UNPKG

pastoralist

Version:

A tool to watch over node module resolutions and overrides

5 lines (4 loc) 384 B
import type { Options, PastoralistJSON } from "../types"; import type { CliConfigDeps, LoadedCliConfig, SecurityConfig } from "./types"; export declare const buildSecurityConfig: (config: PastoralistJSON) => Partial<SecurityConfig>; export declare const loadCliConfig: (options: Options, rest: Omit<Options, "isTestingCLI" | "init">, deps: CliConfigDeps) => Promise<LoadedCliConfig>;