From 894824e657c6ec35da2bfa994fad09e5ad272f18 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Fri, 4 Mar 2016 12:22:19 -0500 Subject: [PATCH] fix(config): fix config set function so that it has arguments defined fixes #5696 --- ionic/config/config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ionic/config/config.ts b/ionic/config/config.ts index 639a9ca765..0fa0a6ab44 100644 --- a/ionic/config/config.ts +++ b/ionic/config/config.ts @@ -251,8 +251,7 @@ export class Config { * @param {string} [key] - The key used to look up the value at a later point in time. * @param {string} [value] - The config value being stored. */ - set() { - const args = arguments; + set(...args: any[]) { const arg0 = args[0]; const arg1 = args[1];