aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/plugin-storage-manager.model.ts
blob: 8a1f389f16c2d357a7a5be80b80b2e56ea33f6b6 (plain) (blame)
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>
}