Type Alias ApplyMergeOp

ApplyMergeOp: ((a: number, b: number) => number)

An operation between two fields of a rectangle. Used in the context of applyMerge

// Multiply fields
const op = (a, b) => a*b;