UNPKG

@solfacil/plasma-utils

Version:

- 💚 [Nuxt 3](https://nuxt.com/) - Compatible with Nuxt 3 - 🍞 [BUN](https://bun.sh/) - A fast JavaScript all-in-one toolkit (runtime, bundler, test runner, package manager). - 🔑 [Keycloak](https://www.keycloak.org/) integration. - ⚡️ Vite - Instant HMR.

7 lines (6 loc) 220 B
export declare function useAppStorage<T>(): { set: (key: string, value: T) => void; get: (key: string, defaultValue?: T | undefined) => T | undefined; remove: (key: string) => void; clear: () => void; };