版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1 год назад
1234567891011121314151617181920
  1. import type { LogHandler, MergedRollupOptions, RollupLog } from './rollup';
  2. export interface BatchWarnings {
  3. add: (warning: RollupLog) => void;
  4. readonly count: number;
  5. flush: () => void;
  6. log: LogHandler;
  7. readonly warningOccurred: boolean;
  8. }
  9. export type LoadConfigFile = typeof loadConfigFile;
  10. export function loadConfigFile(
  11. fileName: string,
  12. commandOptions: any,
  13. watchMode?: boolean
  14. ): Promise<{
  15. options: MergedRollupOptions[];
  16. warnings: BatchWarnings;
  17. }>;