Skip to content

Commit cbf1711

Browse files
committed
fix
1 parent 4a9357c commit cbf1711

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

lib/utils/ts-utils/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ const {
1515
* @typedef {import('@typescript-eslint/types').TSESTree.TypeNode} TSESTreeTypeNode
1616
*/
1717
/**
18-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentTypeProp} ComponentTypeProp
19-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentInferTypeProp} ComponentInferTypeProp
20-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentUnknownProp} ComponentUnknownProp
21-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentTypeEmit} ComponentTypeEmit
22-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentInferTypeEmit} ComponentInferTypeEmit
23-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentUnknownEmit} ComponentUnknownEmit
18+
* @typedef {import('../index').ComponentTypeProp} ComponentTypeProp
19+
* @typedef {import('../index').ComponentInferTypeProp} ComponentInferTypeProp
20+
* @typedef {import('../index').ComponentUnknownProp} ComponentUnknownProp
21+
* @typedef {import('../index').ComponentTypeEmit} ComponentTypeEmit
22+
* @typedef {import('../index').ComponentInferTypeEmit} ComponentInferTypeEmit
23+
* @typedef {import('../index').ComponentUnknownEmit} ComponentUnknownEmit
2424
*/
2525

2626
module.exports = {

lib/utils/ts-utils/ts-ast.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ const { findVariable } = require('@eslint-community/eslint-utils')
99
*
1010
*/
1111
/**
12-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentTypeProp} ComponentTypeProp
13-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentTypeEmit} ComponentTypeEmit
12+
* @typedef {import('../index').ComponentTypeProp} ComponentTypeProp
13+
* @typedef {import('../index').ComponentTypeEmit} ComponentTypeEmit
1414
*/
1515

1616
module.exports = {

lib/utils/ts-utils/ts-types.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ const {
2020
* @typedef {import('typescript').Node} TypeScriptNode
2121
*/
2222
/**
23-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentInferTypeProp} ComponentInferTypeProp
24-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentUnknownProp} ComponentUnknownProp
25-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentInferTypeEmit} ComponentInferTypeEmit
26-
* @typedef {import('../../../typings/eslint-plugin-vue/util-types/utils').ComponentUnknownEmit} ComponentUnknownEmit
23+
* @typedef {import('../index').ComponentInferTypeProp} ComponentInferTypeProp
24+
* @typedef {import('../index').ComponentUnknownProp} ComponentUnknownProp
25+
* @typedef {import('../index').ComponentInferTypeEmit} ComponentInferTypeEmit
26+
* @typedef {import('../index').ComponentUnknownEmit} ComponentUnknownEmit
2727
*/
2828

2929
module.exports = {

0 commit comments

Comments
 (0)