Project V2 interface representing a GitHub Project.
Contains basic project metadata.
interface ProjectV2 { closed: boolean; id: string; title: string;}
closed: boolean
Whether the project is closed
id: string
The unique identifier of the project
title: string
The title of the project
Project V2 interface representing a GitHub Project.