UNPKG

@namiml/web-sdk

Version:

Subscription monetization infrastructure — drop-in SDK with no-code paywalls, onboarding flows, A/B testing for web

9 lines (8 loc) 297 B
import type { IStorageAdapter } from '@namiml/sdk-core'; export declare class WebStorageAdapter implements IStorageAdapter { getItem(key: string): string | null; setItem(key: string, value: string): void; removeItem(key: string): void; clear(): void; getAllKeys(): string[]; }