Skip to content

Commit a88569d

Browse files
author
Nadeem Ur-Rehman
committed
fix(selector): expose Operator enum
1 parent 638d8cc commit a88569d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ SelectQL.js is inspired by Structured Query Language (SQL) for accessing and man
99
## Usage
1010
You may use Arrays or Objects to select and manipulate in well known SQL like syntax that uses builder patterns.
1111

12-
--
13-
--
12+
` let cities = [
13+
{ name: 'Los Angeles', population: 3792621 },
14+
{ name: 'New York', population: 8175133 },
15+
{ name: 'Chicago', population: 2695598 },
16+
{ name: 'Houston', population: 2099451 },
17+
{ name: 'Philadelphia', population: 1526006 },
18+
];`
1419

1520

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export { SelectQL } from './SelectQL';
2-
export { SelectStatement, ISelector } from "./Selector";
2+
export { Operators, ISelector } from "./Selector";
33

0 commit comments

Comments
 (0)