* An initializer as it is written *inside a descriptor literal* * (`stampit({ init(options) { … } })`). * * Unlike Initializer, it declares **no explicit `this`**. That omission is * load-bearing: an explicit `this` in a property's declared type overrides the * `ThisType<…>` contextual
| 76 | * @template O The options object this initializer reads (the factory's 1st arg). |
| 77 | */ |
| 78 | interface DescriptorInitializer<O = any> { |
| 79 | (options: O, context: InitializerContext<any>): void | any; |
| 80 | } |
| 81 | |
| 82 | /** The parameters received by a `.composers()` function. */ |
| 83 | interface ComposerParameters<S> { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…