@arcgis/api-extractor 5.0.0-next.86 → 5.0.0-next.88

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.
@@ -78,7 +78,7 @@ export declare abstract class ApiExtractor {
78
78
  /**
79
79
  * Inherit members from a superclass or mixin.
80
80
  */
81
- protected inheritMembersFrom(parent: ApiExtractorInheritanceData, destination: ApiClassDeclaration | ApiMixinDeclaration, destinationModuleName: string): void;
81
+ protected inheritMembersFrom(parent: ApiExtractorInheritanceData, destination: ApiClassDeclaration | ApiMixinDeclaration, eventsWereExplicitlyInherited: boolean): void;
82
82
  protected inheritMembersOfKind<T extends ApiAttribute | ApiCssCustomProperty | ApiCssCustomState | ApiCssPart | ApiEvent | ApiSlot>(members: T[] | undefined, parentMembers: T[], parentIndexedMembers: Record<string, T>, inheritedFrom?: ApiReference): T[];
83
83
  resolvedInheritance: Record<string,
84
84
  /**
@@ -94,15 +94,16 @@ export declare abstract class ApiExtractor {
94
94
  /**
95
95
  * Based on the superclass name, find the actual declaration in the modules.
96
96
  */
97
- protected resolveInheritance(superClassModule: string, modules: ApiModule[]): ApiExtractorInheritanceData | false;
97
+ protected resolveInheritance(superClassModule: string, modules: ApiModule[], isMixin: boolean): ApiExtractorInheritanceData | false;
98
98
  /**
99
99
  * Overwrite point
100
100
  *
101
101
  * FINAL: jsapi-extractor has a more efficient implementation because it
102
102
  * has to deal with inheritance a lot. Unify it with Lumina.
103
103
  */
104
- protected findSuperclassDeclaration(moduleName: string, modules: ApiModule[]): readonly [string, ApiClassDeclaration | ApiMixinDeclaration] | false;
104
+ protected findSuperclassDeclaration(moduleName: string, modules: ApiModule[], _isMixin: boolean): readonly [string, ApiClassDeclaration | ApiMixinDeclaration] | false;
105
105
  protected handleEventTypesProperty(_apiMember: ApiClassMember, _apiComponent: ApiClassDeclaration | ApiMixinDeclaration, _moduleName: string): void;
106
+ protected resolvePropertyAutoCastingType(_apiMember: ApiClassMember, _moduleName: string): void;
106
107
  /**
107
108
  * This method should check if the super property is an accessor, then the
108
109
  * override property should be promoted to an accessor too.