From b06fb21629ce2eef6459b71aeee690a70a7b1692 Mon Sep 17 00:00:00 2001 From: Yosuke Ota Date: Thu, 16 Mar 2023 06:45:19 +0000 Subject: [PATCH] fix --- typings/@eslint-community/eslint-utils/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typings/@eslint-community/eslint-utils/index.d.ts b/typings/@eslint-community/eslint-utils/index.d.ts index 979e7c3c..ec02470c 100644 --- a/typings/@eslint-community/eslint-utils/index.d.ts +++ b/typings/@eslint-community/eslint-utils/index.d.ts @@ -1,9 +1,9 @@ -export * from "../../node_modules/@types/eslint-utils" +export * from "../../../node_modules/@types/eslint-utils" import type { AST } from "astro-eslint-parser" import type { Scope } from "eslint" import type * as ESTree from "estree" import type { TSESTree } from "@typescript-eslint/types" -import type { SourceCode } from "../../src/types" +import type { SourceCode } from "../../../src/types" type Token = { type: string; value: string } export function isArrowToken(token: Token): boolean export function isCommaToken(token: Token): boolean