mirror of https://git.tuxpa.in/a/code-server.git
6 lines
131 B
TypeScript
6 lines
131 B
TypeScript
|
|
||
|
export interface StorageProvider {
|
||
|
set<T>(key: string, value: T): Promise<void>;
|
||
|
get<T>(key: string): Promise<T | undefined>;
|
||
|
}
|