From 7c627b5c7b1459d4706dd7b83db56c25167481a9 Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Sat, 3 Nov 2018 23:45:18 +0100 Subject: [PATCH] fix(typings): config::save method --- src/api/types/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/types/config.ts b/src/api/types/config.ts index cae80bb..fd1728e 100644 --- a/src/api/types/config.ts +++ b/src/api/types/config.ts @@ -13,6 +13,6 @@ export type ConfigSaveParams = { export type ConfigApi = { config: { byKey: (params: ConfigByKeyParams) => Promise - save: (params: ConfigSaveParams) => Promise + save: (params: ConfigSaveParams) => Promise } }