* Opens a scope. * * @returns {this} Type scope.
()
| 51 | * @returns {this} Type scope. |
| 52 | */ |
| 53 | public open(): this |
| 54 | { |
| 55 | this.opened = true; |
| 56 | this.propertyOptionsArrayMap.clear(); |
| 57 | this.injectOptionsArrayMap.clear(); |
| 58 | |
| 59 | return this; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Adds property options to the type scope. |