## Options type

**Signature:**

```typescript
export type Options<WS extends IWebSocket = WebSocket> = {

WebSocket?: any;

binaryType?: WS['binaryType'];

maxReconnectionDelay?: number;

minReconnectionDelay?: number;

reconnectionDelayGrowFactor?: number;

minUptime?: number;

connectionTimeout?: number;

maxRetries?: number;

maxEnqueuedMessages?: number;

startClosed?: boolean;

debug?: boolean;

debugLogger?: (...args: any[]) => void;

};
```

**References:** [IWebSocket](/content/docs/sdk/core.iwebsocket)  
- [Options type](/content/docs/sdk/core.options#options-type/index.html)
