mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
fix(config): fix config set function so that it has arguments defined
fixes #5696
This commit is contained in:
@ -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];
|
||||
|
||||
|
Reference in New Issue
Block a user