main

mattermost/focalboard

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

workspace.ts

TLDR

This file defines an interface called IWorkspace which represents a workspace in the Demo Projects project. It specifies the properties of a workspace such as id, title, signupToken, settings, modifiedBy, and updatedAt.

Classes

There are no classes in this file.

Methods

There are no methods in this file.

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
interface IWorkspace {
    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 {IWorkspace}