Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
20
my-app/node_modules/rollup/dist/loadConfigFile.d.ts
generated
vendored
Executable file
20
my-app/node_modules/rollup/dist/loadConfigFile.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,20 @@
|
|||
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;
|
||||
}>;
|
Loading…
Add table
Add a link
Reference in a new issue