@yuku-toolchain/types 0.5.39 → 0.5.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +0 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -75,16 +75,6 @@ interface Diagnostic {
|
|
|
75
75
|
labels: DiagnosticLabel[];
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
/**
|
|
79
|
-
* A `(line, column)` pair into the source, matching ESTree's `loc` convention.
|
|
80
|
-
* Lines are 1-based; columns are 0-based.
|
|
81
|
-
*/
|
|
82
|
-
interface SourceLocation {
|
|
83
|
-
/** 1-based line number. */
|
|
84
|
-
line: number;
|
|
85
|
-
/** 0-based column number within the line. */
|
|
86
|
-
column: number;
|
|
87
|
-
}
|
|
88
78
|
/** Discriminant `type` string of every AST node. */
|
|
89
79
|
type NodeType = Node["type"];
|
|
90
80
|
|
|
@@ -1742,7 +1732,6 @@ export type {
|
|
|
1742
1732
|
SourceType,
|
|
1743
1733
|
ModuleKind,
|
|
1744
1734
|
SourceLang,
|
|
1745
|
-
SourceLocation,
|
|
1746
1735
|
BaseNode,
|
|
1747
1736
|
Span,
|
|
1748
1737
|
Program,
|