manifold/common/dashboard.ts
2022-08-26 13:16:59 +01:00

13 lines
237 B
TypeScript

import { JSONContent } from '@tiptap/core'
export type Dashboard = {
id: string
name: string
content: JSONContent
creatorId: string // User id
createdTime: number
slug: string
}
export const MAX_DASHBOARD_NAME_LENGTH = 480