chore(release): 7.1.0 [skip ci]

# [7.1.0](https://github.com/harttle/liquidjs/compare/v7.0.2...v7.1.0) (2019-02-20)

### Features

* throw an Error if delimiter not matched ([c33d8f6](https://github.com/harttle/liquidjs/commit/c33d8f6))
This commit is contained in:
semantic-release-bot
2019-02-20 14:45:44 +00:00
parent c33d8f6828
commit d7d00421e2
11 changed files with 71 additions and 40 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
export default class Token {
type: string;
line: number;
col: number;
raw: string;
input: string;
file: string;
value: string;
constructor(raw: any, pos: any, input: any, file: any, line: any);
constructor(raw: any, col: any, input: any, file: any, line: any);
}