dev: hello world
This commit is contained in:
commit
6037fed3f4
145 changed files with 16848 additions and 0 deletions
17
types/projects.d.ts
vendored
Normal file
17
types/projects.d.ts
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import type { IWorkspace } from "./";
|
||||
|
||||
export interface IProject {
|
||||
id: string;
|
||||
workspace: IWorkspace | string;
|
||||
default_assignee: IUser | string | null;
|
||||
project_lead: IUser | string | null;
|
||||
created_at: Date;
|
||||
updated_at: Date;
|
||||
name: string;
|
||||
description: string;
|
||||
network: number;
|
||||
identifier: string;
|
||||
slug: string;
|
||||
created_by: string;
|
||||
updated_by: string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue