First commit
This commit is contained in:
6
src/storage/keyring.ts
Normal file
6
src/storage/keyring.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export interface KeyringAPI {
|
||||
set(key: string, value: any): void;
|
||||
get(key: string): string;
|
||||
delete(key: string): void;
|
||||
flush(): void;
|
||||
}
|
||||
Reference in New Issue
Block a user