b2195fafc
1 2 3 4 5 6 7
import * as Bluebird from 'bluebird' export interface PluginStorageManager { getData: (key: string) => Bluebird<string> storeData: (key: string, data: any) => Bluebird<any> }