From 09d1e289de4640dc71b576e4eb0e0c557d8529af 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 d65deeccb5bf8da0aebf548711adf1a1fe046249 Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci] --- js/dist-typings/forum/components/PostsUserPage.d.ts | 2 +- js/dist-typings/forum/states/PostStreamState.d.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/dist-typings/forum/components/PostsUserPage.d.ts b/js/dist-typings/forum/components/PostsUserPage.d.ts index 3d2fb279e..a591e4855 100644 --- a/js/dist-typings/forum/components/PostsUserPage.d.ts +++ b/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/js/dist-typings/forum/states/PostStreamState.d.ts b/js/dist-typings/forum/states/PostStreamState.d.ts index ca0ff91e5..6588627b5 100644 --- a/js/dist-typings/forum/states/PostStreamState.d.ts +++ b/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. *