UNPKG

@sneko/ionic-appauth

Version:

Intergration for OpenId/AppAuth-JS into Ionic V3/4/5

9 lines (8 loc) 347 B
import { StorageBackend } from '@openid/appauth'; import 'capacitor-secure-storage-plugin'; export declare class CapacitorSecureStorage implements StorageBackend { getItem(name: string): Promise<string | null>; removeItem(name: string): Promise<void>; clear(): Promise<void>; setItem(name: string, value: string): Promise<void>; }