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
+2 -2
View File
@@ -41,8 +41,8 @@
"@types/uuid": "^9.0.1",
"@types/validator": "^13.7.17",
"@types/wait-on": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"configstore": "^6.0.0",
"eslint": "^8.40.0",
"eslint-config-google": "^0.14.0",
@@ -41,9 +41,6 @@ import { adminAuthKeys } from "./queries"
* @category Mutations
*/
export const useAdminLogin = (
/**
* stuff again
*/
options?: UseMutationOptions<Response<AdminAuthRes>, Error, AdminPostAuthReq>
) => {
const { client } = useMedusa()
@@ -110,8 +110,6 @@ export const useAdminCancelBatchJob = (
}
/**
* @reactMutationHook
*
* When a batch job is created, it's not executed automatically if `dry_run` is set to `true`. This hook confirms that the batch job should be executed.
*
* @example
+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> = {
/**