Properties
with
with
: { <B, M0>(m0
: Mixin<B, M0>): Constructor<B & M0>; <B, M0, M1>(m0
: Mixin<B, M0>, m1
: Mixin<B, M1>): Constructor<B & M0 & M1>; <B, M0, M1, M2>(m0
: Mixin<B, M0>, m1
: Mixin<B, M1>, m2
: Mixin<B, M2>): Constructor<B & M0 & M1 & M2>; <B, M0, M1, M2, M3>(m0
: Mixin<B, M0>, m1
: Mixin<B, M1>, m2
: Mixin<B, M2>, m3
: Mixin<B, M3>): Constructor<B & M0 & M1 & M2 & M3>; }
Type declaration
-
- <B, M0>(m0: Mixin<B, M0>): Constructor<B & M0>
-
- <B, M0, M1>(m0: Mixin<B, M0>, m1: Mixin<B, M1>): Constructor<B & M0 & M1>
-
- <B, M0, M1, M2>(m0: Mixin<B, M0>, m1: Mixin<B, M1>, m2: Mixin<B, M2>): Constructor<B & M0 & M1 & M2>
-
Type Parameters
-
B extends object
-
M0
-
M1
-
M2
Returns Constructor<B & M0 & M1 & M2>
- <B, M0, M1, M2, M3>(m0: Mixin<B, M0>, m1: Mixin<B, M1>, m2: Mixin<B, M2>, m3: Mixin<B, M3>): Constructor<B & M0 & M1 & M2 & M3>
-
Type Parameters
-
B extends object
-
M0
-
M1
-
M2
-
M3
Returns Constructor<B & M0 & M1 & M2 & M3>