@arcgis/lumina-compiler 4.34.0-next.144 → 4.34.0-next.146
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/context/index.d.ts +5 -1
- package/dist/index.js +235 -218
- package/dist/publicTypes.d.ts +11 -4
- package/dist/puppeteerTesting/globalSetup.d.ts +1 -1
- package/package.json +5 -5
package/dist/context/index.d.ts
CHANGED
|
@@ -109,7 +109,11 @@ export declare class CompilerContext {
|
|
|
109
109
|
* Resolves once api.json is first generated.
|
|
110
110
|
* @private
|
|
111
111
|
*/
|
|
112
|
-
apiJsonDeferred: Deferred<void>;
|
|
112
|
+
readonly apiJsonDeferred: Deferred<void>;
|
|
113
|
+
/**
|
|
114
|
+
* In some test environments, api.json will never be produced.
|
|
115
|
+
*/
|
|
116
|
+
apiJsonEnabled: boolean;
|
|
113
117
|
/**
|
|
114
118
|
* @private
|
|
115
119
|
*/
|