RecentProject
interface RecentProject{
id: string;
name: string;
description: string;
lastEditedAt: Date;
image: string;
}
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Project ID |
| name | string | Project name |
| description | string | Project description |
| lastEditedAt | Date | Last edited at |
| image | string | Project image |
Description
This structure contains informations about the recent project. It's used to display the recent projects in the environment selection screen setRecentProjects method.