vue-eslint-parser
Advanced tools
Comparing version 2.0.0-beta.2 to 2.0.0-beta.3
@@ -472,10 +472,14 @@ // Generated by dts-bundle v0.7.3 | ||
name: string; | ||
rawName: string; | ||
} | ||
export interface VDirectiveKey extends HasLocation, HasParent { | ||
type: "VDirectiveKey"; | ||
parent: VAttribute; | ||
export interface DirectiveKeyParts { | ||
name: string; | ||
argument: string | null; | ||
modifiers: string[]; | ||
} | ||
export interface VDirectiveKey extends HasLocation, HasParent, DirectiveKeyParts { | ||
type: "VDirectiveKey"; | ||
parent: VAttribute; | ||
shorthand: boolean; | ||
raw: DirectiveKeyParts; | ||
} | ||
@@ -520,2 +524,3 @@ export interface VLiteral extends HasLocation, HasParent { | ||
name: string; | ||
rawName: string; | ||
startTag: VStartTag; | ||
@@ -522,0 +527,0 @@ children: (VElement | VText | VExpressionContainer)[]; |
{ | ||
"name": "vue-eslint-parser", | ||
"version": "2.0.0-beta.2", | ||
"version": "2.0.0-beta.3", | ||
"description": "The ESLint custom parser for `.vue` files.", | ||
@@ -5,0 +5,0 @@ "engines": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
565584
3408