docs: generate inventory and stock location references (#5645)

This commit is contained in:
Shahed Nasser
2023-11-16 11:10:23 +02:00
committed by GitHub
parent ecabd38b07
commit 95aa5a2d28
88 changed files with 10191 additions and 1 deletions
+8 -1
View File
@@ -1,12 +1,19 @@
import { EntityManager } from "typeorm"
/**
* @interface
*
* A shared context object that is used to share resources between the application and the module.
*
* @prop transactionManager - An instance of a transaction manager.
* @prop manager - An instance of an entity manager.
*/
export type SharedContext = {
transactionManager?: EntityManager
manager?: EntityManager
}
/**
* @internal The interface tag is used to ensure that the type is documented similar to interfaces.
* @interface
*
* A shared context object that is used to share resources between the application and the module.