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. *