From 49f1f3aeeb8b5fbfd5baf86aae00b8277b028e2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20B=C5=99e=C4=8Dka?= Date: Mon, 2 Oct 2017 19:39:01 +0200 Subject: [PATCH] ramda: fix prop function definition (#20099) --- types/ramda/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/ramda/index.d.ts b/types/ramda/index.d.ts index c538d555a0..1aeaab905d 100644 --- a/types/ramda/index.d.ts +++ b/types/ramda/index.d.ts @@ -1438,7 +1438,7 @@ declare namespace R { * Note: TS1.9 # replace any by dictionary */ prop(p: string, obj: any): T; - prop(p: string): (obj: any) => T; + prop(p: string): (obj: any) => T; /** * Determines whether the given property of an object has a specific