8 lines
402 B
TypeScript
8 lines
402 B
TypeScript
import type { Visitors, BaseNode } from '../../types';
|
|
import type { TSOptions, BaseComment, Comment } from '../types';
|
|
export type { BaseComment, Comment };
|
|
export type Node = BaseNode;
|
|
export default function ts(options?: TSOptions): Visitors<BaseNode>;
|
|
// was Record<TSESTree.Expression['type'] | 'Super' | 'RestElement', number>
|
|
export declare const EXPRESSIONS_PRECEDENCE: Record<string, number>;
|