@arcgis/lumina-compiler 4.33.0-next.134 → 4.33.0-next.136

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.
@@ -321,6 +321,8 @@ export declare class CompilerContext {
321
321
  * @private
322
322
  */
323
323
  _updateLuminaTsPromise?: Promise<void>;
324
+ normalizedDocumentationUrl: string;
325
+ alternativeDocumentationUrl: string;
324
326
  constructor(options: LuminaOptions);
325
327
  private _inferBuildSetup;
326
328
  /**
@@ -11,8 +11,6 @@ export declare class LuminaApiExtractor extends ApiExtractor {
11
11
  protected apiComponent: ApiCustomElementDeclaration;
12
12
  protected pairedSetter: ts.SetAccessorDeclaration | undefined;
13
13
  protected copyDocDefinitions: CopyDocDefinitions | undefined;
14
- protected normalizedDocumentationUrl: string;
15
- protected alternativeDocumentationUrl: string;
16
14
  extract(files: readonly ts.SourceFile[]): ApiJson;
17
15
  protected extractModules(files: readonly ts.SourceFile[]): ApiModule[];
18
16
  protected extractDeclarations(module: ts.SourceFile): ApiDeclaration[];
@@ -9,4 +9,4 @@ export declare function buildApiJson(context: CompilerContext, isFirstGenerate:
9
9
  * Update the api.json for a single file on hot reload
10
10
  */
11
11
  export declare function patchApiJson(context: CompilerContext, fileName: string, code: string): ApiCustomElementDeclaration[] | undefined;
12
- export declare function postProcessComponent(component: ApiCustomElementDeclaration, context: CompilerContext, indexedComponents: Map<string, ApiCustomElementDeclaration>, alternativeDocumentationUrl: string, normalizedDocumentationUrl: string): void;
12
+ export declare function postProcessComponent(component: ApiCustomElementDeclaration, context: CompilerContext, indexedComponents: Map<string, ApiCustomElementDeclaration>): void;