👕 Fix some lint issues

This commit is contained in:
Jan Oberhauser
2020-07-08 10:08:00 +02:00
parent b1035d539d
commit b598036b3d
6 changed files with 15 additions and 15 deletions

View File

@@ -0,0 +1,7 @@
import { IDataObject } from 'n8n-workflow';
export interface ITables {
[key: string]: {
[key: string]: Array<IDataObject>;
};
}