@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.
@@ -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
  /**
@@ -103,6 +103,7 @@ export declare abstract class ApiExtractor {
103
103
  */
104
104
  protected findSuperclassDeclaration(moduleName: string, modules: ApiModule[]): 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.