syncpack
Version:
Consistent dependency versions in large JavaScript Monorepos
8 lines (7 loc) • 331 B
TypeScript
import { Effect } from 'effect';
import type { O } from 'ts-toolbelt';
import type { RcConfig } from '../config/types.js';
import type { Io } from './index.js';
type UnverifiedRcConfig = O.Partial<RcConfig, 'deep'>;
export declare function readConfigFile(io: Io, configPath?: string): Effect.Effect<UnverifiedRcConfig>;
export {};