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

Change plugin models names

This commit is contained in:
Chocobozzz 2019-07-24 11:17:42 +02:00
parent 5f189c9c85
commit 9ae88819c2
No known key found for this signature in database
GPG key ID: 583A612D890159BE
14 changed files with 50 additions and 41 deletions

View file

@ -0,0 +1,7 @@
import { ServerHookName } from './server-hook.model'
export interface RegisterServerHookOptions {
target: ServerHookName
handler: Function
priority?: number
}