join.d.ts 246 B

1234567
  1. import { DataComponent as DC } from '../runtime';
  2. import { JoinTransform } from '../spec';
  3. export type JoinOptions = Omit<JoinTransform, 'type'>;
  4. /**
  5. * Join data with another dataset by SQL style.
  6. */
  7. export declare const Join: DC<JoinOptions>;