diff --git a/types/lodash/index.d.ts b/types/lodash/index.d.ts index 6412570fc7..22b2d6b9e1 100644 --- a/types/lodash/index.d.ts +++ b/types/lodash/index.d.ts @@ -5909,6 +5909,7 @@ declare namespace _ { chain(value: string): LoDashExplicitWrapper; chain(value: boolean): LoDashExplicitWrapper; chain(value: T[]): LoDashExplicitArrayWrapper; + chain(value: ReadonlyArray): LoDashExplicitArrayWrapper; chain(value: T): LoDashExplicitObjectWrapper; chain(value: any): LoDashExplicitWrapper; } @@ -6135,6 +6136,11 @@ declare namespace _ { * @see _.plant */ plant(value: T[]): LoDashImplicitArrayWrapper; + + /** + * @see _.plant + */ + plant(value: ReadonlyArray): LoDashImplicitArrayWrapper; /** * @see _.plant @@ -6172,6 +6178,11 @@ declare namespace _ { * @see _.plant */ plant(value: T[]): LoDashExplicitArrayWrapper; + + /** + * @see _.plant + */ + plant(value: ReadonlyArray): LoDashExplicitArrayWrapper; /** * @see _.plant