UNPKG

refql

Version:

A Node.js and Deno library for composing and running SQL queries.

5 lines (4 loc) 260 B
import { RefNodeInput } from "../common/types"; import RefProp from "./RefProp"; declare const HasOne: <As extends string, TableId extends string>(as: As, tableId: TableId, input?: RefNodeInput) => RefProp<As, TableId, "HasOne", false>; export default HasOne;