Sha256: 2640bff90c6135318a98f1e845ceef7d3ae803eaa150cc9286b9da59350519ea
Contents?: true
Size: 780 Bytes
Versions: 5
Compression:
Stored size: 780 Bytes
Contents
import ExternalVariable from './ast/variables/ExternalVariable'; import Graph from './Graph'; import Variable from './ast/variables/Variable'; export default class ExternalModule { private graph; chunk: void; declarations: { [name: string]: ExternalVariable; }; exportsNames: boolean; exportsNamespace: boolean; id: 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; }); suggestName(name: string): void; warnUnusedImports(): void; traceExport(name: string): Variable; }
Version data entries
5 entries across 5 versions & 2 rubygems