Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions webapp/src/statistics/index.ts
Original file line number Diff line number Diff line change
@@ -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
}