import type { AddAliasToSelection } from '~/query-builders/select.types.ts'; import type { ColumnsSelection } from '~/sql/sql.ts'; import type { Subquery, WithSubquery } from '~/subquery.ts'; export type SubqueryWithSelection = & Subquery> & AddAliasToSelection; export type WithSubqueryWithSelection = & WithSubquery> & AddAliasToSelection;