mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
import { RegisterOptions } from './register-options.type'
|
|
|
|
export interface PluginLibrary {
|
|
register: (options: RegisterOptions) => void
|
|
unregister: () => Promise<any>
|
|
}
|