Skip to content

Instantly share code, notes, and snippets.

View srvice-temp's full-sized avatar

Srvice srvice-temp

View GitHub Profile
@srvice-temp
srvice-temp / localStorageUtility.ts
Last active December 12, 2023 09:46
localStorage utility for typescript - keep track of types! 😀
// store objects and keep track of types with Window.localStorage
// (https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage)
interface Bar {}
export enum CacheKey {
Foo = 'Foo'
}
interface CacheValues {