diffY.d.ts 332 B

12345678
  1. import { TransformComponent as TC } from '../runtime';
  2. import { DiffYTransform } from '../spec';
  3. export type DiffYOptions = Omit<DiffYTransform, 'type'>;
  4. /**
  5. * The DiffY transform apply offset for y0 channels.
  6. * Keep y unchanged, set y1 = max(otherY), if y1 > y, remove the data.
  7. */
  8. export declare const DiffY: TC<DiffYOptions>;