Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions docs/reference/typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ The types are not 100% complete yet. Some APIs are missing (the newest ones, e.g
The client is developed against the [latest](https://www.npmjs.com/package/typescript?activeTab=versions) version of TypeScript. Furthermore, unless you have set `skipLibCheck` to `true`, you should configure `esModuleInterop` to `true`.
::::



## Example [_example]

```ts
Expand Down Expand Up @@ -74,18 +72,10 @@ async function run () {
run().catch(console.log)
```


## Request & Response types [_request_response_types]

You can import the full TypeScript requests & responses definitions as it follows:

```ts
import { estypes } from '@elastic/elasticsearch'
```

If you need the legacy definitions with the body, you can do the following:

```ts
import { estypesWithBody } from '@elastic/elasticsearch'
```

1 change: 0 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ 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'