* Merge custom factory parameters to override defaults. * This allows you to provide a custom application instance. * * @param params - Parameters to merge * @param params.app - Custom application service instance * * @example * ```ts * const customApp = new AppFactory().crea
(params: Partial<FactoryParameters>)
| 61 | * ``` |
| 62 | */ |
| 63 | merge(params: Partial<FactoryParameters>): this { |
| 64 | this.#parameters = Object.assign(this.#parameters, params) |
| 65 | return this |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Prepare a stub template with the provided data and return the processed content. |
no outgoing calls
no test coverage detected