File size: 331 Bytes
bc20498 |
1 2 3 4 5 6 7 8 |
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;
|