Support styling

This commit is contained in:
Misode
2020-05-29 01:36:52 +02:00
parent 95d36cd8be
commit a8fabd555b
15 changed files with 143 additions and 27 deletions

View File

@@ -51,5 +51,5 @@ export const SandboxSchema = new ObjectNode({
nbt: 'hi'
}
}),
transform: (v) => v?.condition === 'foo' ? ({...v, test: 'hello'}) : v
transform: (v: any) => v?.condition === 'foo' ? ({...v, test: 'hello'}) : v
});