From e7df8f121eb2b734d1830e4eb117674040ef8924 Mon Sep 17 00:00:00 2001 From: flarum-bot Date: Mon, 27 Dec 2021 19:09:19 +0000 Subject: [PATCH] Bundled output for commit 5e3ad44a554809d0e50a6ef8fab993db3018ea94 Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci] --- .../core/js/dist-typings/forum/components/PostsUserPage.d.ts | 2 +- .../core/js/dist-typings/forum/states/PostStreamState.d.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/core/js/dist-typings/forum/components/PostsUserPage.d.ts b/framework/core/js/dist-typings/forum/components/PostsUserPage.d.ts index 3d2fb279e..a591e4855 100644 --- a/framework/core/js/dist-typings/forum/components/PostsUserPage.d.ts +++ b/framework/core/js/dist-typings/forum/components/PostsUserPage.d.ts @@ -20,7 +20,7 @@ export default class PostsUserPage extends UserPage { * * @type {Post[]} */ - posts: any[] | undefined; + posts: Post[] | undefined; /** * The number of activity items to load per request. * diff --git a/framework/core/js/dist-typings/forum/states/PostStreamState.d.ts b/framework/core/js/dist-typings/forum/states/PostStreamState.d.ts index ca0ff91e5..6588627b5 100644 --- a/framework/core/js/dist-typings/forum/states/PostStreamState.d.ts +++ b/framework/core/js/dist-typings/forum/states/PostStreamState.d.ts @@ -6,7 +6,7 @@ declare class PostStreamState { * * @type {Discussion} */ - discussion: any; + discussion: Discussion; /** * Whether or not the infinite-scrolling auto-load functionality is * disabled. @@ -150,7 +150,7 @@ declare class PostStreamState { * * @return {Post[]} */ - posts(): any[]; + posts(): Post[]; /** * Get the total number of posts in the discussion. *