diff --git a/lib/packets/parsers/result.ts b/lib/packets/parsers/result.ts index 2460000..9e70113 100644 --- a/lib/packets/parsers/result.ts +++ b/lib/packets/parsers/result.ts @@ -2,7 +2,17 @@ import type { BufferReader } from "../../utils/buffer.ts"; import { MysqlDataType } from "../../constant/mysql_types.ts"; import type { ArrayRow, Row, SqlxQueryOptions } from "@halvardm/sqlx"; -export type MysqlParameterType = string | number | bigint | Date | null; +export type MysqlParameterType = + | null + | string + | number + | boolean + | bigint + | Date + // deno-lint-ignore no-explicit-any + | Array + | object + | undefined; /** * Field information