1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Some plugins fixes and doc enhancements

This commit is contained in:
Chocobozzz 2019-07-17 15:46:51 +02:00 committed by Chocobozzz
parent 662e5d4fe4
commit 9fa6ca160a
6 changed files with 45 additions and 19 deletions

View file

@ -1,7 +1,7 @@
import { RegisterOptions } from './register-options.model'
export interface PluginLibrary {
register: (options: RegisterOptions) => void
register: (options: RegisterOptions) => Promise<any>
unregister: () => Promise<any>
}