@ng-supabase/core
Version:
ng-supabase is a component library and helper utilities for integrating Supabase in your angular application.
13 lines (12 loc) • 520 B
TypeScript
import { KeyValue } from '../key-value';
import * as i0 from "@angular/core";
export declare class PersistentStorageService {
getJson<T = KeyValue>(key: string): T | null;
setJson(key: string, value: object): void;
getItem(key: string): string | null;
setItem(key: string, value: string): void;
clear(): void;
removeItem(key: string): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PersistentStorageService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<PersistentStorageService>;
}