Skip to content

Commit 2ff3707

Browse files
author
Rod Johnson
committed
Add index
1 parent a5f7c51 commit 2ff3707

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717

1818
- Documentation
1919
- Declaration map
20+
- `index.ts` file
2021

2122
### Changed
2223

src/index.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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";

tslint.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
"no-switch-case-fall-through": true,
6161
"no-unnecessary-class": true,
6262
"no-unused-expression": true,
63-
"no-unused-variable": true,
6463
"no-var-keyword": true,
6564
"object-literal-shorthand": true,
6665
"prefer-readonly": true,

0 commit comments

Comments
 (0)