@abaplint/core 2.113.17 → 2.113.18
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 +1 -1
- package/build/src/registry.js +1 -1
- package/package.json +1 -1
package/build/abaplint.d.ts
CHANGED
|
@@ -3237,7 +3237,7 @@ declare interface IFunctionModuleParameter {
|
|
|
3237
3237
|
|
|
3238
3238
|
declare interface IGlobalConfig {
|
|
3239
3239
|
/** input files, glob format */
|
|
3240
|
-
files: string;
|
|
3240
|
+
files: string | string[];
|
|
3241
3241
|
skipGeneratedBOPFInterfaces?: boolean;
|
|
3242
3242
|
/** Skips generated table maintenances, determined via TOBJ object */
|
|
3243
3243
|
skipGeneratedFunctionGroups?: boolean;
|
package/build/src/registry.js
CHANGED