@techmmunity/symbiosis
Version:
Symbiosis - The Ultimate OM For All Databases
21 lines (20 loc) • 455 B
TypeScript
import type { SaveOperatorType } from "./save-operators-type";
interface ConstructorParams<T> {
type: SaveOperatorType;
values: Array<T>;
}
/**
* Save Operator used in Save Operations.
*/
export declare class SaveOperator {
/**
* Operator type.
*/
readonly type: SaveOperatorType;
/**
* Parameter values.
*/
readonly values: Array<any>;
constructor({ type, values }: ConstructorParams<any>);
}
export {};