Last active
June 5, 2022 23:16
-
-
Save DimitryDushkin/508711318a99240b9b959e3c3fb5393c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type Task = { | |
id: ID; | |
title: string; | |
start: Date; | |
end: Date; | |
duration: number; | |
/** | |
* Approximation of priority | |
*/ | |
position: number; | |
progress: number; | |
resourceId: ID; | |
/** | |
* Current task blocked by these tasks (depends on) | |
*/ | |
blockedBy?: Array<ID>; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment