UNPKG

@namiml/web-sdk

Version:

Nami Web SDK makes subscriptions & in-app purchases easy, with powerful built-in paywalls and A/B testing

11 lines (10 loc) 218 B
/** * Set the level of logs to print while running the SDK */ export type NamiLogLevel = "error" | "warn" | "info" | "debug"; export declare enum LogLevel { DEBUG = 1, INFO = 2, WARN = 3, ERROR = 4 }