Skip to content

Commit f6345cc

Browse files
committed
Typescript update
1 parent 776730d commit f6345cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ interface SelectionOptions extends BaseOptions {
3030
all?: boolean,
3131
columns?: string[],
3232
from: string,
33-
where?: (string | Expression)[]
33+
where?: (string | BooleanExpression)[]
3434
}
3535

3636
interface UpdateOptions extends BaseOptions {
3737
table: string,
38-
set: (string | Expression)[],
39-
where?: (string | Expression)[]
38+
set: (string | BooleanExpression)[],
39+
where?: (string | BooleanExpression)[]
4040
}
4141

4242
interface DeleteOptions extends BaseOptions {
4343
from: string,
44-
where?: (string | Expression)[]
44+
where?: (string | BooleanExpression)[]
4545
}
4646

4747
interface BooleanExpression {

0 commit comments

Comments
 (0)