* Applies one or more mixins to this construct. * * Mixins are applied in order. The list of constructs is captured at the * start of the call, so constructs added by a mixin will not be visited. * * @param mixins The mixins to apply * @returns This construct for chaining
(...mixins: IMixin[])
| 26 | * @returns This construct for chaining |
| 27 | */ |
| 28 | with(...mixins: IMixin[]): IConstruct; |
| 29 | } |
| 30 | |
| 31 | /** |
no outgoing calls
no test coverage detected