UNPKG

@techmmunity/symbiosis

Version:

Symbiosis - The Ultimate OM For All Databases

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