1 2 3 4 5
export interface PluginStorageManager { getData: (key: string) => Promise<string> storeData: (key: string, data: any) => Promise<any> }