/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface Project { /** * An email address associated with the project. */ email?: string; /** * Whether the project is selected as a favorite. */ favourite?: boolean; /** * The ID of the project. */ id?: string; } //# sourceMappingURL=Project.d.ts.map