// Type definitions for eslint-visitor-keys 1.0 // Project: https://github.com/eslint/eslint-visitor-keys#readme // Definitions by: Toru Nagashima // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.2 export interface VisitorKeys { readonly [type: string]: ReadonlyArray | undefined; } export const KEYS: VisitorKeys; export function getKeys(node: {}): ReadonlyArray; export function unionWith(keys: VisitorKeys): VisitorKeys;