remove star export (#121806)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Vadim Kibana 2021-12-28 19:16:26 +01:00 committed by GitHub
parent 9d46b40c72
commit 0cf392e85d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,11 +6,9 @@
* Side Public License, v 1.
*/
// TODO: https://github.com/elastic/kibana/issues/109905
/* eslint-disable @kbn/eslint/no_export_all */
export * from './util';
export * from './streaming';
export * from './buffer';
export * from './batch';
export * from './constants';
export { normalizeError, removeLeadingSlash, appendQueryParam } from './util';
export type { StreamingResponseHandler } from './streaming';
export type { ItemBufferParams, TimedItemBufferParams, BatchedFunctionParams } from './buffer';
export { ItemBuffer, TimedItemBuffer, createBatchedFunction } from './buffer';
export type { ErrorLike, BatchRequestData, BatchResponseItem, BatchItemWrapper } from './batch';
export { DISABLE_BFETCH_COMPRESSION } from './constants';