@abaplint/core 2.113.78 → 2.113.79
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/build/abaplint.d.ts +2 -2
- package/build/src/registry.js +1 -1
- package/package.json +1 -1
package/build/abaplint.d.ts
CHANGED
|
@@ -3798,14 +3798,14 @@ declare interface IRange {
|
|
|
3798
3798
|
end: Position;
|
|
3799
3799
|
}
|
|
3800
3800
|
|
|
3801
|
-
declare interface IReference {
|
|
3801
|
+
export declare interface IReference {
|
|
3802
3802
|
position: Identifier;
|
|
3803
3803
|
resolved: Identifier | undefined;
|
|
3804
3804
|
referenceType: ReferenceType;
|
|
3805
3805
|
extra?: IReferenceExtras;
|
|
3806
3806
|
}
|
|
3807
3807
|
|
|
3808
|
-
declare interface IReferenceExtras {
|
|
3808
|
+
export declare interface IReferenceExtras {
|
|
3809
3809
|
ooName?: string;
|
|
3810
3810
|
ooType?: "CLAS" | "INTF" | "Void";
|
|
3811
3811
|
}
|
package/build/src/registry.js
CHANGED