mirror of
https://github.com/logos-messaging/OpChan.git
synced 2026-01-05 22:33:07 +00:00
16 lines
467 B
TypeScript
16 lines
467 B
TypeScript
import { DelegationInfo } from './types';
|
|
export declare class DelegationStorage {
|
|
/**
|
|
* Store delegation information in IndexedDB
|
|
*/
|
|
static store(delegation: DelegationInfo): Promise<void>;
|
|
/**
|
|
* Retrieve delegation information from IndexedDB
|
|
*/
|
|
static retrieve(): Promise<DelegationInfo | null>;
|
|
/**
|
|
* Clear stored delegation information
|
|
*/
|
|
static clear(): Promise<void>;
|
|
}
|
|
//# sourceMappingURL=storage.d.ts.map
|