From 6d36cb6df53d3dde2ac6698b3b062637a7df3316 Mon Sep 17 00:00:00 2001 From: Ross Harrison Date: Thu, 11 Apr 2019 11:43:25 -0500 Subject: [PATCH] fix lint error --- types/seamless-immutable/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/seamless-immutable/index.d.ts b/types/seamless-immutable/index.d.ts index 739eafb463..ebf546d409 100644 --- a/types/seamless-immutable/index.d.ts +++ b/types/seamless-immutable/index.d.ts @@ -57,7 +57,7 @@ declare namespace SeamlessImmutable { getIn(propertyPath: [ K, L, M, N ]): Immutable; getIn(propertyPath: [ K, L, M, N ], defaultValue: T[K][L][M][N]): Immutable; getIn( - propertyPath: [ K, L, M, N, O ]): Immutable + propertyPath: [ K, L, M, N, O ]): Immutable; getIn( propertyPath: [ K, L, M, N, O ], defaultValue: T[K][L][M][N][O]): Immutable; getIn(propertyPath: string[]): Immutable;