1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 | import { AstNodeWithLanguage, Document, FileRelativeUrl, Import, ResolvedUrl, ScannedImport, SourceRange, Warning } from '../model/model';
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 | export declare class ScriptTagImport extends Import {
|
22 | readonly type = "html-script";
|
23 | readonly isModule: boolean;
|
24 | constructor(url: ResolvedUrl, originalUrl: FileRelativeUrl, type: string, document: Document | undefined, sourceRange: SourceRange | undefined, urlSourceRange: SourceRange | undefined, ast: AstNodeWithLanguage | undefined, warnings: Warning[], lazy: boolean, isModule: boolean);
|
25 | }
|
26 | export declare class ScannedScriptTagImport extends ScannedImport {
|
27 | readonly isModule: boolean;
|
28 | constructor(url: FileRelativeUrl, sourceRange: SourceRange, urlSourceRange: SourceRange, ast: AstNodeWithLanguage, isModule: boolean);
|
29 | resolve(document: Document): Import | undefined;
|
30 | protected constructImport(resolvedUrl: ResolvedUrl, relativeUrl: FileRelativeUrl, importedDocument: Document | undefined, _containingDocument: Document): ScriptTagImport;
|
31 | }
|