* Switch to SPDX license format for all non-codegen files * Add test to ensure all committed JS files have SPDX header
14 lines
427 B
TypeScript
14 lines
427 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'
|