Skip to content

Commit

Permalink
fix(rearg): fix typescript build error
Browse files Browse the repository at this point in the history
  • Loading branch information
steelsojka committed May 6, 2017
1 parent 750032c commit 65f8757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rearg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from './factory';
import { PartialValueApplicator } from './applicators';

export const Rearg: (indexes: ResolvableFunction|number|number[], ...args: (number|number[])[]) => LodashDecorator = DecoratorFactory.createInstanceDecorator(
export const Rearg: (indexes: ResolvableFunction|number|number[], ...args: Array<number|number[]>) => LodashDecorator = DecoratorFactory.createInstanceDecorator(
new DecoratorConfig(rearg, new PartialValueApplicator(), { property: true })
);
export { Rearg as rearg };
Expand Down

0 comments on commit 65f8757

Please sign in to comment.