/** * This file was auto-generated by Fern from our API Definition. */ /** * GitHub Issue object */ export interface GitHubIssue { /** Issue ID (read-only, set by GitHub) */ id?: number; /** Issue title */ title: string; /** Issue description/body */ body?: string; /** Issue state: open or closed */ state?: string; /** List of label names */ labels?: string[]; }