import { Project, Issue } from "./gitea"; import { BoardId } from "./board"; export interface Kanboard { id: BoardId lanes: KanboardLane[] } export interface KanboardLane { id: number title: string cards: KanboardCard[] }; export interface KanboardCard { id: number title: string project: Project issue: Issue }