(
options: OnTransformOptions,
callback: TransformFn,
)
| 159 | } |
| 160 | |
| 161 | onTransformStaticFile( |
| 162 | options: OnTransformOptions, |
| 163 | callback: TransformFn, |
| 164 | ): void { |
| 165 | this.#transformer.onTransform(options, callback); |
| 166 | } |
| 167 | |
| 168 | async listen( |
| 169 | importApp: () => Promise<{ app: App<State> } | App<State>>, |
no test coverage detected