/** * @packageDocumentation * @module std */ import { INegatable } from "./INegatable"; import { IComputable } from "./IComputable"; declare type PlusParam = number | string | Pick, "plus">; declare type Param> = number | Pick, Key>; export declare function plus, Y = X, Ret = X>(x: X, y: Y): Ret; export declare function minus, Y = X, Ret = X>(x: X, y: Y): Ret; export declare function negate, Ret = X>(x: X): Ret; export declare function multiplies, Y = X, Ret = X>(x: X, y: Y): Ret; export declare function divides, Y = X, Ret = X>(x: X, y: Y): Ret; export declare function modules, Y = X, Ret = X>(x: X, y: Y): Ret; export {}; //# sourceMappingURL=operators.d.ts.map