UNPKG

@techmmunity/symbiosis

Version:

Symbiosis - The Ultimate OM For All Databases

13 lines (12 loc) 295 B
import { SaveOperator } from "./base"; /** * Sets the value of a column as itself `+` the value passed as param * * Ex: * ```ts * // Before: { count: 1 } * repository.save({ count: Plus(1) }) * // After: { count: 2 } * ``` */ export declare const Plus: (value: number) => SaveOperator;