mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
import { RegisterOptions } from './register-options.model'
|
|
|
|
export interface PluginLibrary {
|
|
register: (options: RegisterOptions) => void
|
|
|
|
unregister: () => Promise<any>
|
|
}
|