mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 04:40:39 -07:00
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:
Vendored
+2
-1
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user