morphit/node_modules/svelte-eslint-parser/lib/context/fix-locations.d.ts

7 lines
331 B
TypeScript

import type * as ESTree from "estree";
import type { Comment, Token } from "../ast";
import type { Context } from ".";
/** Fix locations */
export declare function fixLocations(node: ESTree.Node, tokens: Token[], comments: Comment[], offset: number, visitorKeys: {
[type: string]: string[];
} | undefined, ctx: Context): void;