> ## Documentation Index
> Fetch the complete documentation index at: https://docs.smokeball.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Entry Point

[**@smokeballdev/smokeball-client-sdk**](./../README)

***

# Class: SmokeballClientSdk

## Constructors

### Constructor

> **new SmokeballClientSdk**(): `SmokeballClientSdk`

#### Returns

`SmokeballClientSdk`

## Methods

### get()

> `static` **get**(): [`Api`](./../@smokeballdev/namespaces/common/interfaces/Api)

Creates the entry point to the Smokeball Client Sdk.

#### Returns

[`Api`](./../@smokeballdev/namespaces/common/interfaces/Api)

sdk instance if the Smokeball app is loaded and interoperability is possible.

null when the Smokeball app is not loaded.

#### Example

```
const sdk = SmokeballClientSdk.get();
if (sdk != null) {
  // Interoperability with Smokeball is possible.
}
```
