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

WIP plugins: add ability to register plugins

This commit is contained in:
Chocobozzz 2019-07-05 13:54:32 +02:00 committed by Chocobozzz
parent 297067399d
commit 345da516fa
23 changed files with 553 additions and 3 deletions

View file

@ -0,0 +1,5 @@
export type RegisterHookOptions = {
target: string
handler: Function
priority?: number
}