Fix genType annotations

This commit is contained in:
Sam Nolan 2022-09-30 12:18:07 +10:00
parent 7829efab25
commit 5076427d03
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,4 @@
@genType
type environment = GenericDist.env
@genType.opaque

View File

@ -7,14 +7,18 @@ type project = {
mutable environment: Reducer_T.environment,
mutable previousRunOrder: array<string>,
}
@genType
type t = project
@genType
type projectItemJson = {
id: string,
source: string,
continues: array<string>,
}
@genType
type projectJson = {
items: array<projectItemJson>,
environment: Reducer_T.environment,