From 9155852028b63a834953d80c5e6e412dd4992c71 Mon Sep 17 00:00:00 2001 From: IanM Date: Wed, 2 Oct 2024 13:21:34 +0100 Subject: [PATCH] fix?: typings --- framework/core/js/dist-typings/forum/components/Search.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) 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); /**