UNPKG

@kinde-oss/kinde-auth-pkce-js

Version:

Kinde PKCE authentication for SPAs

10 lines (9 loc) 238 B
export interface Store { setItem: (key: string, value: unknown) => void; getItem: (key: string) => unknown; removeItem: (key: string) => void; reset: () => void; } export type StoreItems = { [key: string]: unknown; };