Doc: correct typo in DockerDesktopClient entrypoint reference (#22701)

<!--Delete sections as needed -->

## Description
Fix typo `DockerDesktopCLient` -> `DockerDesktopClient`


<!-- Tell us what you did and why -->

## Related issues or tickets

<!-- Related issues, pull requests, or Jira tickets -->

## Reviews

<!-- Notes for reviewers here -->
<!-- List applicable reviews (optionally @tag reviewers) -->

- [ ] Technical review
- [ ] Editorial review
- [ ] Product review
This commit is contained in:
nkmryu 2025-05-27 16:12:33 +09:00 committed by GitHub
parent d84f2245e3
commit b3280b168c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ and communicate with the Docker Desktop dashboard or the underlying system.
JavaScript API libraries, with Typescript support, are available in order to get all the API definitions in to your extension code.
- [@docker/extension-api-client](https://www.npmjs.com/package/@docker/extension-api-client) gives access to the extension API entrypoint `DockerDesktopCLient`.
- [@docker/extension-api-client](https://www.npmjs.com/package/@docker/extension-api-client) gives access to the extension API entrypoint `DockerDesktopClient`.
- [@docker/extension-api-client-types](https://www.npmjs.com/package/@docker/extension-api-client-types) can be added as a dev dependency in order to get types auto-completion in your IDE.
```Typescript