import { Project } from "./gitea" export type BoardLaneId = string export type BoardId = string export interface Board { id: BoardId title: string description: string lanes: BoardLane[] projects: Project[] }; export interface BoardLane { id: BoardLaneId title: string issueLabel: string collectRemainingIssues: boolean };