(cherry picked from commit b030084f24)
Co-authored-by: Josh Mock <joshua.mock@elastic.co>
15 lines
468 B
TypeScript
15 lines
468 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and contributors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import Client from './lib/client'
|
|
import SniffingTransport from './lib/sniffingTransport'
|
|
|
|
export * from '@elastic/transport'
|
|
export * as estypes from './lib/api/types'
|
|
export * as estypesWithBody from './lib/api/typesWithBodyKey'
|
|
export { Client, SniffingTransport }
|
|
export type { ClientOptions, NodeOptions } from './lib/client'
|
|
export * as helpers from './lib/helpers'
|