@opentelemetry/web-common
Version:
Common utilities for web instrumentation
7 lines • 303 B
TypeScript
import { Session } from './types/Session';
import { SessionStore } from './types/SessionStore';
export declare class LocalStorageSessionStore implements SessionStore {
save(session: Session): Promise<void>;
get(): Promise<Session | null>;
}
//# sourceMappingURL=LocalStorageSessionStore.d.ts.map