lovelacejs/lib/entities/nodules/JoinNodule.d.ts
ysandler b1cb153885 Convert to TS
refact: convert to TS
2022-06-19 18:52:17 -05:00

14 lines
431 B
TypeScript

import { joinBy, joinNoduleConstructionProps, joinParam } from '../../types/noduleTypes';
import Nodule from '../Nodule';
declare class JoinNodule extends Nodule {
baseTableLabel: string;
joinParams: joinParam[];
constructor(props: joinNoduleConstructionProps);
export: () => {
[x: string]: unknown;
}[];
setJoinBy: (joinBy: joinBy) => void;
private validateJoinBy;
}
export default JoinNodule;