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 type environment = GenericDist.env
@genType.opaque @genType.opaque

View File

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