import { type SqlFunctionArgument } from "https://deno.land/x/sqlite@v3.9.1/src/function.ts";
Possible arguments a user-defined SQL function might receive.
These correspond to the SQL types INTEGER
(number,
bigint, or boolean), REAL
(number), TEXT
(string),
BLOB
(Uint8Array), and NULL
(null).
See QueryParameter
for more details on how JS values
are converted to and from SQL values.