File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
17
17
18
18
- Documentation
19
19
- Declaration map
20
+ - ` index.ts ` file
20
21
21
22
### Changed
22
23
Original file line number Diff line number Diff line change
1
+
2
+ export * from "./Microgrammar" ;
3
+ export * from "./Primitives" ;
4
+
5
+ export * from "./Matchers" ;
6
+
7
+ export * from "./InputState" ;
8
+
9
+ export * from "./Rep" ;
10
+
11
+ export * from "./Ops" ;
12
+
13
+ export * from "./matchers/skip/Skip" ;
14
+
15
+ export * from "./matchers/snobol/Span" ;
16
+
17
+ export { flatten } from "./matchers/Functions" ;
18
+
19
+ export { isPatternMatch } from "./PatternMatch" ;
20
+
21
+ export { isSuccessfulMatch } from "./MatchPrefixResult" ;
Original file line number Diff line number Diff line change 60
60
"no-switch-case-fall-through" : true ,
61
61
"no-unnecessary-class" : true ,
62
62
"no-unused-expression" : true ,
63
- "no-unused-variable" : true ,
64
63
"no-var-keyword" : true ,
65
64
"object-literal-shorthand" : true ,
66
65
"prefer-readonly" : true ,
You can’t perform that action at this time.
0 commit comments