Skip to main content

Overview

InitOptions type represents the configuration options for initializing the SDK. The code snippet below shows how to use the InitOptions type to create an init options object.
JavaScript
type InitOptions = PartnerDetails & {
  enableDebug?: boolean;
  logLevel?: LogLevel;
  isTestMode?: boolean;
  theme?: ThemeOptions;
};

Properties

Extends: PartnerDetails