Skip to content
This repository was archived by the owner on May 25, 2025. It is now read-only.

Commit 9186be9

Browse files
chore: CommonDB.getByIds ids are strictly strings
1 parent e5c7296 commit 9186be9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common.db.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export interface CommonDB {
5050
*/
5151
getByIds: <ROW extends ObjectWithId>(
5252
table: string,
53-
ids: ROW['id'][],
53+
ids: string[],
5454
opt?: CommonDBOptions,
5555
) => Promise<ROW[]>
5656

0 commit comments

Comments
 (0)