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