mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 05:21:52 +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} [key] - The key used to look up the value at a later point in time.
|
||||||
* @param {string} [value] - The config value being stored.
|
* @param {string} [value] - The config value being stored.
|
||||||
*/
|
*/
|
||||||
set() {
|
set(...args: any[]) {
|
||||||
const args = arguments;
|
|
||||||
const arg0 = args[0];
|
const arg0 = args[0];
|
||||||
const arg1 = args[1];
|
const arg1 = args[1];
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user