aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/plugins/plugin-settings-manager.model.ts
blob: 63390a190b693cb49c38131ae5effc388a5a206f (plain) (tree)
1
2
3
4
5
6
7






                                                            
import * as Bluebird from 'bluebird'

export interface PluginSettingsManager {
  getSetting: (name: string) => Bluebird<string>

  setSetting: (name: string, value: string) => Bluebird<any>
}