# plugged

Learn how to await the SDK initialization.

This property returns a `Promise` that resolves to the SDK instance after the initialization is complete.

## Signature

This property has the following signature:

```ts
public get plugged(): Promise<Plug>
```

## Example

Here is a basic example of how to use this property:

```ts
import croct from '@croct/plug';

croct.plug({appId: '00000000-0000-0000-0000-000000000000'});

croct.plugged.then(croct => {
  console.log('SDK plugged');
});
```
