Reduce text differences with the old version (Visual Studio being mean!)

This commit is contained in:
David Driscoll
2014-04-15 15:12:23 -04:00
parent b5fb5ecf07
commit d9539f82c4
2 changed files with 301 additions and 301 deletions
File diff suppressed because it is too large Load Diff
+7 -7
View File
@@ -181,15 +181,15 @@ declare module _ {
**/
valueOf(): T;
/**
* @see valueOf
**/
value(): T;
}
/**
* @see valueOf
**/
value(): T;
}
interface LoDashWrapper<T> extends LoDashWrapperBase<T, LoDashWrapper<T>> { }
interface LoDashWrapper<T> extends LoDashWrapperBase<T, LoDashWrapper<T>> {}
interface LoDashObjectWrapper<T> extends LoDashWrapperBase<T, LoDashObjectWrapper<T>> { }
interface LoDashObjectWrapper<T> extends LoDashWrapperBase<T, LoDashObjectWrapper<T>> {}
interface LoDashArrayWrapper<T> extends LoDashWrapperBase<T[], LoDashArrayWrapper<T>> {
concat(...items: T[]): LoDashArrayWrapper<T>;