summaryrefslogtreecommitdiff
path: root/node_modules/liquidjs/dist/filters/math.d.ts
blob: 7574b0a5475bab5600ffe3eb86c16224ea25000e (plain)
1
2
3
4
5
6
7
8
9
10
11
export declare const abs: (this: unknown, x: number) => any;
export declare const at_least: (this: unknown, ...args: number[]) => any;
export declare const at_most: (this: unknown, ...args: number[]) => any;
export declare const ceil: (this: unknown, x: number) => any;
export declare const divided_by: (this: unknown, dividend: number, divisor: number, integerArithmetic?: any) => any;
export declare const floor: (this: unknown, x: number) => any;
export declare const minus: (this: unknown, v: number, arg: number) => any;
export declare const plus: (this: unknown, lhs: number, rhs: number) => any;
export declare const modulo: (this: unknown, v: number, arg: number) => any;
export declare const times: (this: unknown, v: number, arg: number) => any;
export declare function round(v: number, arg?: number): number;