...
This commit is contained in:
parent
7dafc1d659
commit
172315047c
2 changed files with 9 additions and 9 deletions
|
|
@ -85,10 +85,10 @@ const mkType = makeTypeParser({
|
|||
});
|
||||
|
||||
export const ModuleVersioning = [
|
||||
["getDepth", {i: getDepth, t: mkType("Slot -> Int")}],
|
||||
["overwrite", {i: overwrite, t: mkType("Slot -> Value -> Slot")}],
|
||||
["read", {i: read, t: mkType("Slot -> Value")}],
|
||||
["transform", {i: transform, t: mkType("Value -> Value -> Value")}],
|
||||
["newSlot", {i: newSlot, t: mkType("UUID -> Slot")}],
|
||||
["newLiteral", {i: newLiteral, t: mkType("Dynamic -> Value")}],
|
||||
["getDepth" , newDynamic(getDepth )(mkType("Slot -> Int" ))],
|
||||
["overwrite" , newDynamic(overwrite )(mkType("Slot -> Value -> Slot" ))],
|
||||
["read" , newDynamic(read )(mkType("Slot -> Value" ))],
|
||||
["transform" , newDynamic(transform )(mkType("Value -> Value -> Value"))],
|
||||
["newSlot" , newDynamic(newSlot )(mkType("UUID -> Slot" ))],
|
||||
["newLiteral", newDynamic(newLiteral)(mkType("Dynamic -> Value" ))],
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue