From e991c52ae35d9bb5f88737697b02f5b0ac94d78e Mon Sep 17 00:00:00 2001 From: Aleksandr Zavadkin Date: Thu, 1 Jul 2021 20:14:03 +0900 Subject: [PATCH] refactor(list): types changed ISSUES CLOSED: #81 --- list/src/List.interface.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/list/src/List.interface.ts b/list/src/List.interface.ts index c0508bb3..87435c2e 100644 --- a/list/src/List.interface.ts +++ b/list/src/List.interface.ts @@ -15,5 +15,5 @@ export interface ListInterface { status: boolean, ) => [] postObject: { post?: string; important?: boolean; like?: boolean; id: number } - setPostData: [] + setPostData: () => [] }