Skip to content

Commit

Permalink
fix(validateIncrement): fix wrong type (#2796)
Browse files Browse the repository at this point in the history
  • Loading branch information
mainframev committed Mar 4, 2021
1 parent 020f2f3 commit bafe8b5
Showing 1 changed file with 5 additions and 1 deletion.
@@ -1,4 +1,8 @@
import { Params } from "../validateDecrement/index";
export type Params = {
value: number;
maxValue?: number;
step?: number;
};

declare const ValidateIncrement: (arg: Params) => number;

Expand Down

0 comments on commit bafe8b5

Please sign in to comment.