frontend - removed references to dbgate-engines

This commit is contained in:
Jan Prochazka
2020-11-24 20:15:07 +01:00
parent 644a35d8c3
commit 424aff5d93
10 changed files with 75 additions and 20 deletions

View File

@@ -1,3 +1,5 @@
import { EngineDriver } from "./engines";
export interface FileFormatDefinition {
storageType: string;
extension: string;
@@ -27,4 +29,5 @@ export interface PluginDefinition {
export interface ExtensionsDirectory {
plugins: PluginDefinition[];
fileFormats: FileFormatDefinition[];
drivers: EngineDriver[];
}