From d2826502ce75bb1acb9e9456f3afd0b8c45b1008 Mon Sep 17 00:00:00 2001 From: "Robert St. John" Date: Mon, 26 Feb 2024 17:26:55 -0700 Subject: [PATCH] comment on future change --- lib/db/dbAdapter.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/db/dbAdapter.ts b/lib/db/dbAdapter.ts index 2fb65e13..71806a7a 100644 --- a/lib/db/dbAdapter.ts +++ b/lib/db/dbAdapter.ts @@ -1,3 +1,8 @@ +/** + * TODO: + * This should allow `null` as well, but adding that could be a breaking change to clients. + * Additionally set `"strictNullChecks": true` in tsconfig. + */ export type DBValue = boolean | string | number | Buffer | Uint8Array; export interface DBAdapter {