UNPKG

332 BTypeScriptView Raw
1import { TransformComponent as TC } from '../runtime';
2import { DiffYTransform } from '../spec';
3export 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 */
8export declare const DiffY: TC<DiffYOptions>;