main

mattermost/focalboard

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

Board.ts

TLDR

This file defines the shape of a Board interface, which represents a board in the application. The Board interface has properties such as id, title, and fields.

Classes

None

interface BoardFields {
  isTemplate: boolean
}

export default interface Board {
  id: string
  title: string
  fields: BoardFields
}