kibana/x-pack/plugins/file_upload/public/index.ts

20 lines
630 B
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { FileUploadPlugin } from './plugin';
export function plugin() {
return new FileUploadPlugin();
}
export * from './importer/types';
export { Props as IndexNameFormProps } from './components/geojson_upload_form/index_name_form';
export { FileUploadPluginStart } from './plugin';
export { FileUploadComponentProps, FileUploadGeoResults } from './lazy_load_bundle';