export interface Project { /** * The ID of the project. */ id?: string; /** * An email address associated with the project. */ email?: string; /** * Whether the project is selected as a favorite. */ favourite?: boolean; } //# sourceMappingURL=Project.d.ts.map