mirror of
https://github.com/mattermost/focalboard.git
synced 2025-01-23 18:34:02 +02:00
fd7d61b47c
* Enabling again the eslint rules and applying the fixes * Restore , separators for types in single line mode * fix new errors * more lint fixes Co-authored-by: Scott Bishel <scott.bishel@mattermost.com>
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export type TopBoard = {
|
|
boardID: string
|
|
icon: string
|
|
title: string
|
|
activityCount: number
|
|
activeUsers: string
|
|
createdBy: string
|
|
}
|
|
|
|
export type TopBoardResponse = {
|
|
has_next: boolean
|
|
items: TopBoard[]
|
|
}
|