(self, p: string | symbol, newValue: any)
| 184 | return getAccess([...path, key]); |
| 185 | }, |
| 186 | set(self, p: string | symbol, newValue: any) { |
| 187 | that.setConfig([...path, p].join(','), newValue); |
| 188 | return true; |
| 189 | }, |
| 190 | }); |
| 191 | }; |
| 192 | return getAccess([]); |