@arcgis/api-extractor 5.0.0-next.85 → 5.0.0-next.87
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/dist/extractor/ApiExtractor.d.ts +2 -1
- package/dist/index.js +221 -222
- package/dist/utils/apiHelpers.d.ts +1 -1
- package/package.json +3 -3
|
@@ -29,7 +29,7 @@ interface PostProcessLinkContext {
|
|
|
29
29
|
moduleName: string;
|
|
30
30
|
file?: ts.SourceFile;
|
|
31
31
|
}
|
|
32
|
-
export declare function postProcessLinks(apiPart: Partial<Pick<ApiCustomElementField, "deprecated" | "description" | "docsTags">>, context: PostProcessLinkContext): void;
|
|
32
|
+
export declare function postProcessLinks(apiPart: Partial<Pick<ApiCustomElementField, "deprecated" | "description" | "docsTags" | "inheritedFrom">>, context: PostProcessLinkContext): void;
|
|
33
33
|
/**
|
|
34
34
|
* @privateRemarks
|
|
35
35
|
* Link validation runs during post-processing, at which point we don't have easy
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/api-extractor",
|
|
3
|
-
"version": "5.0.0-next.
|
|
3
|
+
"version": "5.0.0-next.87",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"bin": "./dist/cli.js",
|
|
22
22
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@arcgis/components-build-utils": "5.0.0-next.
|
|
25
|
-
"@arcgis/toolkit": "5.0.0-next.
|
|
24
|
+
"@arcgis/components-build-utils": "5.0.0-next.87",
|
|
25
|
+
"@arcgis/toolkit": "5.0.0-next.87",
|
|
26
26
|
"@commander-js/extra-typings": "^14.0.0",
|
|
27
27
|
"chalk": "^5.4.1",
|
|
28
28
|
"commander": "^14.0.0",
|