/** * Logger utility for @spatialwalk/avatarkit-rtc SDK. * * Supports three log levels: info, warning, error. * External consumers can configure the log level at initialization. * * @packageDocumentation */ /** * Log levels supported by the SDK. */ export type LogLevel = 'info' | 'warning' | 'error' | 'none'; //# sourceMappingURL=logger.d.ts.map