repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
Projectflow
stars
latest
clone command
git clone gitlawb://did:key:z6Mkfh4Y...QBEi/projectflowgit clone gitlawb://did:key:z6Mkfh4Y.../projectflowb3cded1async from playground1d ago| import type { IssueStatus, Priority, IssueType } from "../value-objects"; |
| #2 |
| #3 | export interface Issue { |
| #4 | id: string; |
| #5 | projectId: string; |
| #6 | identifier: string; |
| #7 | title: string; |
| #8 | description: string; |
| #9 | status: IssueStatus; |
| #10 | priority: Priority; |
| #11 | type: IssueType; |
| #12 | assigneeId: string | null; |
| #13 | sprintId: string | null; |
| #14 | labels: string[]; |
| #15 | dueDate: string | null; |
| #16 | estimate: number | null; |
| #17 | parentId: string | null; |
| #18 | createdAt: string; |
| #19 | updatedAt: string; |
| #20 | createdById: string; |
| #21 | } |
| #22 |