import type { JoinType } from "./JoinType.js"; /** * Options for [`Client::join`]. */ export type JoinOptions = { join_type?: JoinType; name?: string; right_on?: string; };