import { TypedStore } from "./typed-store"; const defaultStore = new TypedStore(); const getItem = defaultStore.getItem.bind(defaultStore); const getItemAsync = defaultStore.getItemAsync.bind(defaultStore); const setItem = defaultStore.setItem.bind(defaultStore); const setItemAsync = defaultStore.setItemAsync.bind(defaultStore); const setItemWithExpiration = defaultStore.setItemWithExpiration.bind(defaultStore); const itemExists = defaultStore.itemExists.bind(defaultStore); const itemExistsAsync = defaultStore.itemExistsAsync.bind(defaultStore); const removeItemAsync = defaultStore.removeItemAsync.bind(defaultStore); export { TypedStore, getItem, getItemAsync, setItem, setItemAsync, setItemWithExpiration, itemExists, itemExistsAsync, removeItemAsync, };