WIP - add extractor, generate snippet_data
This commit is contained in:
33
node_modules/rollup/dist/typings/ExternalModule.d.ts
generated
vendored
Normal file
33
node_modules/rollup/dist/typings/ExternalModule.d.ts
generated
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
import ExternalVariable from './ast/variables/ExternalVariable';
|
||||
import Graph from './Graph';
|
||||
import Variable from './ast/variables/Variable';
|
||||
import { OutputOptions } from './rollup';
|
||||
export default class ExternalModule {
|
||||
private graph;
|
||||
chunk: void;
|
||||
declarations: {
|
||||
[name: string]: ExternalVariable;
|
||||
};
|
||||
exportsNames: boolean;
|
||||
exportsNamespace: boolean;
|
||||
id: string;
|
||||
renderPath: string;
|
||||
isExternal: true;
|
||||
isEntryPoint: false;
|
||||
name: string;
|
||||
mostCommonSuggestion: number;
|
||||
nameSuggestions: {
|
||||
[name: string]: number;
|
||||
};
|
||||
reexported: boolean;
|
||||
used: boolean;
|
||||
execIndex: number;
|
||||
constructor({graph, id}: {
|
||||
graph: Graph;
|
||||
id: string;
|
||||
});
|
||||
setRenderPath(options: OutputOptions, inputPath: string): void;
|
||||
suggestName(name: string): void;
|
||||
warnUnusedImports(): void;
|
||||
traceExport(name: string): Variable;
|
||||
}
|
||||
Reference in New Issue
Block a user