chore(typing): restore some defn's now that dgeni is fixed

Closes #2446
Closes #2805
This commit is contained in:
Alex Eagle
2015-06-30 18:10:14 -07:00
committed by Peter Bacon Darwin
parent de05d1bf46
commit a90063a827
3 changed files with 12 additions and 8 deletions

View File

@ -1,13 +1,6 @@
import {Type} from 'angular2/src/facade/lang';
import {List} from 'angular2/src/facade/collection';
export {Function as GetterFn};
export {Function as SetterFn};
export {Function as MethodFn};
// TODO replace once dgeni is fixed
/**
export type SetterFn = (obj: any, value: any) => void;
export type GetterFn = (obj: any) => any;
export type MethodFn = (obj: any, args: List<any>) => any;
**/