Skip to content

Commit

Permalink
fix(util): replace implicit any in dom-controller (#9511)
Browse files Browse the repository at this point in the history
* fix(util): explicit any in dom-controller

* fix(util): replace implicit any in dom-controller
  • Loading branch information
Manduro authored and manucorporat committed Dec 6, 2016
1 parent 6093ed4 commit 6c0593c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/dom-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { nativeRaf } from './dom';
import { removeArrayItem } from './util';


export type DomCallback = { (timeStamp: number) };
export type DomCallback = { (timeStamp: number): void };

export class DomDebouncer {

Expand Down

0 comments on commit 6c0593c

Please sign in to comment.