(key: string)
| 345 | } |
| 346 | |
| 347 | const copyPropertyAsJson = (key: string) => { |
| 348 | const val = asJSON((this as AnyObject)[key]); |
| 349 | if (val !== undefined) { |
| 350 | json[key] = val; |
| 351 | } |
| 352 | }; |
| 353 | |
| 354 | const json: AnyObject = {}; |
| 355 | const hiddenProperties: string[] = def.settings.hiddenProperties || []; |