Use search client scope

This commit is contained in:
Chocobozzz 2019-07-22 16:04:44 +02:00 committed by Chocobozzz
parent 93cae47925
commit e8f902c05c
8 changed files with 25 additions and 16 deletions

View file

@ -1,12 +1,11 @@
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
import { ClientScript } from '../plugins/plugin-package-json.model'
import { PluginClientScope } from '../plugins/plugin-scope.type'
export interface ServerConfigPlugin {
name: string
version: string
description: string
clientScripts: { [name in PluginClientScope]: ClientScript }
clientScripts: { [name: string]: ClientScript }
}
export interface ServerConfigTheme extends ServerConfigPlugin {