File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,6 @@ export interface AqlQuery<T = any> {
4040 * Derived type representing AQL query objects generated by the AQL helper
4141 * functions and the AQL template string handler. These objects can be fed
4242 * back into these helper functions to be inlined or merged in complex queries.
43- *
44- * @internal
4543 */
4644export interface GeneratedAqlQuery < T = any > extends AqlQuery < T > {
4745 /**
@@ -224,7 +222,7 @@ export function aql<T = any>(
224222 2 ,
225223 strings [ i ] + src . strings [ 0 ] ,
226224 ...src . strings . slice ( 1 , src . args . length ) ,
227- src . strings [ src . args . length ] + strings [ i + 1 ] ,
225+ src . strings [ src . args . length ] + strings [ i + 1 ]
228226 ) ;
229227 } else {
230228 query += rawValue . query + strings [ i + 1 ] ;
@@ -319,7 +317,7 @@ export function aql<T = any>(
319317 * ```
320318 */
321319export function literal (
322- value : string | number | boolean | AqlLiteral | null | undefined ,
320+ value : string | number | boolean | AqlLiteral | null | undefined
323321) : AqlLiteral {
324322 if ( isAqlLiteral ( value ) ) {
325323 return value ;
Original file line number Diff line number Diff line change @@ -609,7 +609,7 @@ export type UserFunctionDescription = {
609609 /**
610610 * Whether the function is deterministic.
611611 *
612- * See {@link databases.Database#createFunction }.
612+ * See {@link databases.Database#createUserFunction }.
613613 */
614614 isDeterministic : boolean ;
615615} ;
You can’t perform that action at this time.
0 commit comments