We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e78762a commit 0959f8dCopy full SHA for 0959f8d
1 file changed
packages/fmodata/src/client/query/query-builder.ts
@@ -69,7 +69,8 @@ type QueryBuilderHasSelect<
69
// biome-ignore lint/suspicious/noExplicitAny: Accepts any FMTable configuration
70
Occ extends FMTable<any, any>,
71
Selected,
72
-> = Selected extends Record<string, Column<any, any, any>> // biome-ignore lint/suspicious/noExplicitAny: Generic constraint accepting any Column configuration
+ // biome-ignore lint/suspicious/noExplicitAny: Generic constraint accepting any Column configuration
73
+> = Selected extends Record<string, Column<any, any, any>>
74
? true
75
: Selected extends keyof InferSchemaOutputFromFMTable<Occ>
76
? false
0 commit comments