X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fplugins%2Fplugin-library.model.ts;h=df6499b6b7de32fb800eeaae3060516db1984258;hb=b2195fafc292d6761c25fe51ca4e0328ab403424;hp=8eb18d7206511fc819e27547d6929275e2fa0514;hpb=345da516fae80f24c90c2196e96393b489af2243;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/plugins/plugin-library.model.ts b/shared/models/plugins/plugin-library.model.ts index 8eb18d720..df6499b6b 100644 --- a/shared/models/plugins/plugin-library.model.ts +++ b/shared/models/plugins/plugin-library.model.ts @@ -1,6 +1,7 @@ -import { RegisterOptions } from './register-options.type' +import { RegisterOptions } from './register-options.model' export interface PluginLibrary { register: (options: RegisterOptions) => void + unregister: () => Promise }