View source: R/decorators-helpers.R
| check_decorators | R Documentation |
Check if a decorators list is valid and matches the expected output names.
check_decorators(x, names = NULL)
assert_decorators(x, names = NULL, .var.name = checkmate::vname(x), add = NULL)
x |
(named |
names |
( |
.var.name |
[ |
add |
If an |
TRUE if valid, otherwise a character(1) string describing the problem.
module_transform_data()
decorator <- teal_transform_module(server = function(id, data) data)
check_decorators(decorator)
check_decorators(list(all = decorator))
check_decorators(list(all = decorator, output = decorator))
check_decorators(list(all = decorator, output = list(decorator, decorator)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.