diff options
author | Chocobozzz <me@florianbigard.com> | 2019-07-18 16:43:41 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-07-24 10:58:16 +0200 |
commit | 32fe00138990627749da58ff9f845584013aa219 (patch) | |
tree | 3b9cc791614e87cf07bb62c8ef7a40690580ac39 /shared/models/plugins/register-options.model.ts | |
parent | 60cfd4cb54138e7da76054aa163b33b3223b17ef (diff) | |
download | PeerTube-32fe00138990627749da58ff9f845584013aa219.tar.gz PeerTube-32fe00138990627749da58ff9f845584013aa219.tar.zst PeerTube-32fe00138990627749da58ff9f845584013aa219.zip |
Provide logger to plugins
Diffstat (limited to 'shared/models/plugins/register-options.model.ts')
-rw-r--r-- | shared/models/plugins/register-options.model.ts | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/shared/models/plugins/register-options.model.ts b/shared/models/plugins/register-options.model.ts deleted file mode 100644 index e3a7cff08..000000000 --- a/shared/models/plugins/register-options.model.ts +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | import { RegisterHookOptions } from './register-hook.model' | ||
2 | import { RegisterSettingOptions } from './register-setting.model' | ||
3 | import { PluginSettingsManager } from './plugin-settings-manager.model' | ||
4 | import { PluginStorageManager } from './plugin-storage-manager.model' | ||
5 | |||
6 | export type RegisterOptions = { | ||
7 | registerHook: (options: RegisterHookOptions) => void | ||
8 | |||
9 | registerSetting: (options: RegisterSettingOptions) => void | ||
10 | |||
11 | settingsManager: PluginSettingsManager | ||
12 | |||
13 | storageManager: PluginStorageManager | ||
14 | } | ||