main

mattermost/focalboard

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

index.ts

TLDR

This file exports a constant LimitUnlimited and an interface BoardsCloudLimits for managing limits related to boards in the cloud.

Classes

None

Methods

None

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

export const LimitUnlimited = 0

export interface BoardsCloudLimits {
    cards: number
    used_cards: number
    card_limit_timestamp: number
    views: number
}