mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-07 02:10:03 +00:00
12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
import { FunctionCollection } from '@baserow/formula/parser/javascriptExecutor'
|
|
|
|
export class RuntimeFunctionCollection extends FunctionCollection {
|
|
constructor($registry) {
|
|
super()
|
|
this.$registry = $registry
|
|
}
|
|
|
|
get(name) {
|
|
return this.$registry.get('runtime_formula_type', name)
|
|
}
|
|
}
|