From 3000f8636f39d1b1010bcebe83c279aba1a62bc8 Mon Sep 17 00:00:00 2001 From: Aleck Greenham Date: Wed, 29 Jul 2020 14:05:33 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20incorrect=20typings=20for?= =?UTF-8?q?=20collection=20operators?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.d.ts b/index.d.ts index ebf13b1..1a85b36 100644 --- a/index.d.ts +++ b/index.d.ts @@ -779,19 +779,19 @@ export interface CreateItemActionCreatorOptions extends RemoteActionCreatorOp /** * A An array of list keys to push the new item to the end of. */ - push?: Array, + push?: Array, /** * A An array of list keys to add the new item to the beginning of. */ - unshift?: Array, + unshift?: Array, /** * A An array of list keys for which to clear (invalidate). This is useful for when you know the item * that was just created is likely to appear in a list, but you don't know where, so you need to * re-retrieve the whole list from the server. */ - invalidate?: Array, + invalidate?: Array, } export interface DestroyItemActionCreatorOptions extends RemoteActionCreatorOptions {