main

mattermost/focalboard

Last updated at: 29/12/2023 09:48

index.ts

TLDR

This file exports an interface named BoardSiteStatistics that defines the shape of an object containing statistics about a board site.

Classes (if applicable)

None

Methods (if applicable)

None

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

export interface BoardSiteStatistics {
    board_count: number
    card_count: number
}