docs-util: created docblock-generator tool (#6096)

This commit is contained in:
Shahed Nasser
2024-01-24 11:13:40 +01:00
committed by GitHub
parent d68089b2aa
commit f29948a6a8
37 changed files with 2684 additions and 115 deletions
+4 -4
View File
@@ -2,8 +2,8 @@ import { EntityManager } from "typeorm"
/**
* @interface
*
* A shared context object that is used to share resources between the application and the module.
*
* A context used to share resources, such as transaction manager, between the application and the module.
*/
export type SharedContext = {
/**
@@ -18,8 +18,8 @@ export type SharedContext = {
/**
* @interface
*
* A shared context object that is used to share resources between the application and the module.
*
* A context used to share resources, such as transaction manager, between the application and the module.
*/
export type Context<TManager = unknown> = {
/**