/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Linear Issue object */ export interface LinearIssue { /** Issue title */ title: string; /** Issue description */ description?: string; /** Issue priority (0=No priority, 1=Urgent, 2=High, 3=Medium, 4=Low) */ priority?: number; /** Name of the workflow state (e.g., 'Todo', 'In Progress', 'Done') */ state_name?: string; /** Comments on this issue */ comments?: Klavis.LinearComment[]; }