diff --git a/framework/core/js/dist-typings/forum/components/Search.d.ts b/framework/core/js/dist-typings/forum/components/Search.d.ts index 2d2a34efb4..38b4313f60 100644 --- a/framework/core/js/dist-typings/forum/components/Search.d.ts +++ b/framework/core/js/dist-typings/forum/components/Search.d.ts @@ -55,6 +55,12 @@ export default class Search extends Compone * * @deprecated Replace with`this.searchState` instead. */ + /** + * The instance of `SearchState` for this component. + * + * @deprecated Replace with`this.searchState` instead. + */ + // @ts-expect-error This is a get accessor, while superclass defines this as a property. This is needed to prevent breaking changes, however. get state(): SearchState; set state(state: SearchState); /**