mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* 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
12 lines
443 B
JavaScript
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];
|