6 lines
243 B
Plaintext
6 lines
243 B
Plaintext
import type { TSESTree } from '@typescript-eslint/utils';
|
|
/**
|
|
* Recursively checks whether a given reference has a type query declaration among its parents
|
|
*/
|
|
export declare function referenceContainsTypeQuery(node: TSESTree.Node): boolean;
|