diff --git a/webapp/src/statistics/index.ts b/webapp/src/statistics/index.ts index 351b1fc2d..f7580764c 100644 --- a/webapp/src/statistics/index.ts +++ b/webapp/src/statistics/index.ts @@ -1,8 +1,13 @@ -// Copyright (c) 2020-present Mattermost, Inc. All Rights Reserved. -// See LICENSE.txt for license information. - - -export interface BoardSiteStatistics { - board_count: number - card_count: number -} +// Copyright (c) 2020-present Mattermost, Inc. All Rights Reserved. +// See LICENSE.txt for license information. + + +/** + * Represents the statistics for a board site. + * @property board_count - The number of boards. + * @property card_count - The number of cards. + */ +export interface BoardSiteStatistics { + board_count: number + card_count: number +}