Skip to content

Commit bd3059c

Browse files
committed
refactor: simplify constructor in BaseQueryBuilder to enhance clarity
1 parent 325e6f1 commit bd3059c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/query-builder/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { QueryResult, SqlExecutor } from "../types";
22
import { SQLKITException } from "../exceptions";
33

44
export abstract class BaseQueryBuilder<T> {
5-
protected constructor(
5+
constructor(
66
protected readonly tableName: string,
77
protected readonly executor?: SqlExecutor<T>,
88
) {}

0 commit comments

Comments
 (0)