main

mattermost/focalboard

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

team.ts

TLDR

This file defines an interface ITeam used to represent a team. It contains properties such as id, title, signupToken, settings, modifiedBy, and updateAt. The interface is exported for use in other modules.

Classes

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
interface ITeam {
    readonly id: string
    readonly title: string
    readonly signupToken: string
    // eslint-disable-next-line @typescript-eslint/no-explicit-any
    readonly settings: Readonly<Record<string, any>>
    readonly modifiedBy?: string
    readonly updateAt?: number
}

export {ITeam}