@arcgis/languages-sdk-spec 5.0.0-next.99 → 5.0.1
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/README.md +2 -3
- package/dist/scripting/utilities.d.ts +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,6 +8,5 @@ It is not intended to be used directly, but rather used as a dependency by other
|
|
|
8
8
|
|
|
9
9
|
## License
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
This package is licensed under the terms described in the `LICENSE.md` file, located in the root of the package.
|
|
11
|
+
This package is licensed under the terms described in the `LICENSE.md` file, located in the root of the package, and at https://js.arcgis.com/5.0/LICENSE.txt.
|
|
12
|
+
For third party notices, see https://js.arcgis.com/5.0/third-party-notices.txt.
|
|
@@ -49,10 +49,10 @@ export declare function generateAdditionalResourcesSection(resources: ApiResourc
|
|
|
49
49
|
export declare function fixUrl(description: string, paths: Paths, relative?: boolean): string;
|
|
50
50
|
/**
|
|
51
51
|
* Interlaces two arrays and joins them into a string with spaces.
|
|
52
|
-
* @param
|
|
53
|
-
* @param
|
|
54
|
-
* @param
|
|
55
|
-
* @returns
|
|
52
|
+
* @param array1 - The first array.
|
|
53
|
+
* @param array2 - The second array.
|
|
54
|
+
* @param positions - Optional positions for the second array elements.
|
|
55
|
+
* @returns - The interlaced array.
|
|
56
56
|
*/
|
|
57
57
|
export declare function interlaceArrays(array1: string[], array2: string[], positions?: number[]): string;
|
|
58
58
|
export declare function isSqlApiFunction(apiItem: SchemaApiItem): apiItem is SqlApiFunction;
|
package/package.json
CHANGED