Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
import type { IDataObject } from 'n8n-workflow';
export interface ITables {
[key: string]: {
[key: string]: IDataObject[];
};
}