mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
7 lines
202 B
TypeScript
7 lines
202 B
TypeScript
import { RegisterServerOptions } from './register-server-option.model'
|
|
|
|
export interface PluginLibrary {
|
|
register: (options: RegisterServerOptions) => Promise<any>
|
|
|
|
unregister: () => Promise<any>
|
|
}
|