Skip to content

Commit 0959f8d

Browse files
committed
Tidy query-builder type constraint comment
1 parent e78762a commit 0959f8d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/fmodata/src/client/query/query-builder.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ type QueryBuilderHasSelect<
6969
// biome-ignore lint/suspicious/noExplicitAny: Accepts any FMTable configuration
7070
Occ extends FMTable<any, any>,
7171
Selected,
72-
> = Selected extends Record<string, Column<any, any, any>> // biome-ignore lint/suspicious/noExplicitAny: Generic constraint accepting any Column configuration
72+
// biome-ignore lint/suspicious/noExplicitAny: Generic constraint accepting any Column configuration
73+
> = Selected extends Record<string, Column<any, any, any>>
7374
? true
7475
: Selected extends keyof InferSchemaOutputFromFMTable<Occ>
7576
? false

0 commit comments

Comments
 (0)