(path: string, createIfNone = true)
| 811 | } |
| 812 | |
| 813 | getProp(path: string, createIfNone = true): IProp | null { |
| 814 | return this.props.query(path, createIfNone) || null; |
| 815 | } |
| 816 | |
| 817 | getExtraProp(key: string, createIfNone = true): IProp | null { |
| 818 | return this.props.get(getConvertedExtraKey(key), createIfNone) || null; |
no test coverage detected