Skip to content

Commit e777183

Browse files
committed
added types
1 parent 1b1d870 commit e777183

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.1.1",
2+
"version": "3.1.2",
33
"name": "react-rock",
44
"author": "Naxrul Ahmed",
55
"license": "MIT",

src/types.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@ export interface IStateHandler<Row, MetaProps> {
4141

4242

4343
export type QueryValueType = {
44-
contain?: string | number;
44+
contain?: string | number | boolean | null | undefined;
4545
startWith?: string | number;
4646
endWith?: string | number;
47+
equalWith?: string | number | boolean | null | undefined;
48+
notEqualWith?: string | number | boolean | null | undefined;
4749
gt?: number;
4850
lt?: number;
4951
gte?: number;

0 commit comments

Comments
 (0)