-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.d.ts
50 lines (46 loc) · 900 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import {
AstAnalyser,
AstAnalyserOptions,
EntryFilesAnalyser,
EntryFilesAnalyserOptions,
SourceParser,
JsSourceParser,
runASTAnalysis,
runASTAnalysisOnFile,
Report,
ReportOnFile,
RuntimeFileOptions,
RuntimeOptions,
SourceLocation,
Dependency
} from "./types/api.js";
import {
Warning,
WarningDefault,
WarningLocation,
WarningName,
WarningNameWithValue
} from "./types/warnings.js";
declare const warnings: Record<WarningName, Pick<WarningDefault, "experimental" | "i18n" | "severity">>;
export {
warnings,
AstAnalyser,
AstAnalyserOptions,
EntryFilesAnalyser,
EntryFilesAnalyserOptions,
JsSourceParser,
SourceParser,
runASTAnalysis,
runASTAnalysisOnFile,
Report,
ReportOnFile,
RuntimeFileOptions,
RuntimeOptions,
SourceLocation,
Dependency,
Warning,
WarningDefault,
WarningLocation,
WarningName,
WarningNameWithValue
}