@chartshq/datamodel
Version:
An environment with `node`, `rustup` and `wasm-pack` set up.
14 lines (13 loc) • 325 B
TypeScript
export declare enum Operations {
SELECT = "select",
GROUPBY = "groupBy",
PROJECT = "project",
SPLIT = "split",
SORT = "sort",
CALCULATE = "calculate_variable"
}
export declare const DEFAULT = "default";
export interface DerivationParams {
operation: Operations;
params: Record<string, any>;
}