plugged
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:
public get plugged(): Promise<Plug>
Example
Here is a basic example of how to use this property:
import croct from '@croct/plug';croct.plug({appId: '00000000-0000-0000-0000-000000000000'});rcroct.plugged.then(croct => {console.log('SDK plugged');});