Home > @activeviam/activeui-sdk > Transformer
Transformer type
A table transformer taking as a first argument the table to transform and as a second argument a callback to return the new table transformed.
Signature:
export declare type Transformer = (a: Table, b: (a: Table) => void) => void;