The parameters received by a `.composers()` function.
| 81 | |
| 82 | /** The parameters received by a `.composers()` function. */ |
| 83 | interface ComposerParameters<S> { |
| 84 | /** The result of the composables' composition. */ |
| 85 | stamp: S; |
| 86 | /** The list of composables the Stamp was just composed of. */ |
| 87 | composables: Composable[]; |
| 88 | } |
| 89 | |
| 90 | /** A function used as a `.composers()` argument. */ |
| 91 | interface Composer<S = any> { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…