Skip to content

Commit 4bc22cc

Browse files
committed
Fix typedoc warnings
1 parent e172e69 commit 4bc22cc

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/aql.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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
*/
4644
export 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
*/
321319
export 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;

src/queries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
};

0 commit comments

Comments
 (0)