kibana/x-pack/plugins/canvas/public/functions/index.js
Joe Fleming 2aa8f62401
Fix: correctly access types from "to" function (#32691) (#33068)
* fix: correctly access types

they are not exposed on the handlers object, they must be imported from @kbn/interpreter

* chore: move to function to browser

types can be accessed in the browser now, and a common function makes no sense right now. also https://github.com/elastic/kibana/issues/33039 prevents having the same function in both places anyway
2019-03-12 17:04:59 -06:00

12 lines
443 B
JavaScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import { asset } from './asset';
import { filters } from './filters';
import { timelion } from './timelion';
import { to } from './to';
export const clientFunctions = [asset, filters, timelion, to];