Skip to content

Commit

Permalink
docs(jsdoc): add links for the methods in Types
Browse files Browse the repository at this point in the history
  • Loading branch information
niloysikdar committed Nov 16, 2023
1 parent d4f0d3d commit f2a2078
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/types/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class Types {
}

/**
*
* More information: https://docs.gethyper.ai/types#string
* @param {string} query - The query to be processed
* @param {MethodParamsOptions} options - Optional parameters to be passed to the request, such as `contextId`
* @returns The result of the query as a string data type
Expand All @@ -60,7 +60,7 @@ export class Types {
}

/**
*
* More information: https://docs.gethyper.ai/types#integer
* @param {string} query - The query to be processed
* @param {MethodParamsOptions} options - Optional parameters to be passed to the request, such as `contextId`
* @returns The result of the query as an integer data type
Expand All @@ -82,7 +82,7 @@ export class Types {
}

/**
*
* More information: https://docs.gethyper.ai/types#float
* @param {string} query - The query to be processed
* @param {MethodParamsOptions} options - Optional parameters to be passed to the request, such as `contextId`
* @returns The result of the query as a float data type
Expand All @@ -104,7 +104,7 @@ export class Types {
}

/**
*
* More information: https://docs.gethyper.ai/types#boolean
* @param {string} query - The query to be processed
* @param {MethodParamsOptions} options - Optional parameters to be passed to the request, such as `contextId`
* @returns The result of the query as a boolean data type
Expand All @@ -126,7 +126,7 @@ export class Types {
}

/**
*
* More information: https://docs.gethyper.ai/types#datetime
* @param {string} query - The query to be processed
* @param {MethodParamsOptions} options - Optional parameters to be passed to the request, such as `contextId`
* @returns The result of the query as a datetime data type
Expand All @@ -148,7 +148,7 @@ export class Types {
}

/**
*
* More information: https://docs.gethyper.ai/types#string-array
* @param {string} query - The query to be processed
* @param {MethodParamsOptions} options - Optional parameters to be passed to the request, such as `contextId`
* @returns The result of the query as a array of strings
Expand All @@ -170,7 +170,7 @@ export class Types {
}

/**
*
* More information: https://docs.gethyper.ai/types#integer-array
* @param {string} query - The query to be processed
* @param {MethodParamsOptions} options - Optional parameters to be passed to the request, such as `contextId`
* @returns The result of the query as a array of integers
Expand All @@ -192,7 +192,7 @@ export class Types {
}

/**
*
* More information: https://docs.gethyper.ai/types#float-array
* @param {string} query - The query to be processed
* @param {MethodParamsOptions} options - Optional parameters to be passed to the request, such as `contextId`
* @returns The result of the query as a array of floats
Expand All @@ -214,7 +214,7 @@ export class Types {
}

/**
*
* More information: https://docs.gethyper.ai/types#boolean-array
* @param {string} query - The query to be processed
* @param {MethodParamsOptions} options - Optional parameters to be passed to the request, such as `contextId`
* @returns The result of the query as a array of booleans
Expand All @@ -236,7 +236,7 @@ export class Types {
}

/**
*
* More information: https://docs.gethyper.ai/types#datetime-array
* @param {string} query - The query to be processed
* @param {MethodParamsOptions} options - Optional parameters to be passed to the request, such as `contextId`
* @returns The result of the query as a array of datetime strings
Expand Down

0 comments on commit f2a2078

Please sign in to comment.