13 lines
688 B
Plaintext
13 lines
688 B
Plaintext
import type { ParserServicesWithTypeInformation, TSESTree } from '@typescript-eslint/typescript-estree';
|
|
import type * as ts from 'typescript';
|
|
/**
|
|
* Resolves the given node's type. Will return the type's generic constraint, if it has one.
|
|
*
|
|
* Warning - if the type is generic and does _not_ have a constraint, the type will be
|
|
* returned as-is, rather than returning an `unknown` type. This can be checked
|
|
* for by checking for the type flag ts.TypeFlags.TypeParameter.
|
|
*
|
|
* @see https://github.com/typescript-eslint/typescript-eslint/issues/10438
|
|
*/
|
|
export declare function getConstrainedTypeAtLocation(services: ParserServicesWithTypeInformation, node: TSESTree.Node): ts.Type;
|