Sha256: da9f07c6be066d7b02671ee64ac78bd56cd1a57d98f1ad6b2ef54f685ca146cf
Contents?: true
Size: 471 Bytes
Versions: 26
Compression:
Stored size: 471 Bytes
Contents
import type { LogHandler, MergedRollupOptions, RollupLog } from './rollup'; export interface BatchWarnings { add: (warning: RollupLog) => void; readonly count: number; flush: () => void; log: LogHandler; readonly warningOccurred: boolean; } export type LoadConfigFile = typeof loadConfigFile; export function loadConfigFile( fileName: string, commandOptions: any, watchMode?: boolean ): Promise<{ options: MergedRollupOptions[]; warnings: BatchWarnings; }>;
Version data entries
26 entries across 26 versions & 1 rubygems