Put LoDashStringWrapper interface declaration at the top with the others

This commit is contained in:
Tim Perry
2015-07-26 16:07:46 +01:00
parent a9a55446fc
commit d9088b29d8
+3 -1
View File
@@ -190,6 +190,8 @@ declare module _ {
interface LoDashWrapper<T> extends LoDashWrapperBase<T, LoDashWrapper<T>> { }
interface LoDashStringWrapper extends LoDashWrapper<string> { }
interface LoDashObjectWrapper<T> extends LoDashWrapperBase<T, LoDashObjectWrapper<T>> { }
interface LoDashArrayWrapper<T> extends LoDashWrapperBase<T[], LoDashArrayWrapper<T>> {
@@ -2183,7 +2185,7 @@ declare module _ {
includes<TValue>(target: TValue, fromIndex?: number): boolean;
}
interface LoDashStringWrapper extends LoDashWrapper<string> {
interface LoDashStringWrapper {
/**
* @see _.contains
**/