Fix CRec type

This commit is contained in:
Tony Garnock-Jones 2021-03-02 12:40:50 +01:00
parent 3a4a8a6ccb
commit 096262fdd5
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ export const CDict = Record.makeConstructor<{}, Ref>()(
_CDict, []);
export type ConstructorSpec =
| Record<typeof _CRec, [string, number], Ref>
| Record<typeof _CRec, [Assertion, number], Ref>
| Record<typeof _CArr, [number], Ref>
| Record<typeof _CDict, [], Ref>;