removed fileformatbase

This commit is contained in:
Jan Prochazka
2020-11-21 18:03:35 +01:00
parent 8ab8034060
commit 3009724a82
9 changed files with 38 additions and 20 deletions

20
packages/types/fileformat.d.ts vendored Normal file
View File

@@ -0,0 +1,20 @@
export interface FileFormatDefinition {
storageType: string;
extension: string;
name: string;
readerFunc?: string;
writerFunc?: string;
args?: any[];
addFilesToSourceList: (
file: {
full: string;
},
newSources: string[],
newValues: {
[key: string]: any;
}
) => void;
getDefaultOutputName?: (sourceName, values) => string;
getOutputParams?: (sourceName, values) => any;
}

View File

@@ -39,3 +39,4 @@ export * from './query';
export * from './dialect';
export * from './dumper';
export * from './dbtypes';
export * from './fileformat';