Type Alias: ConstrainedTypeParserServices
type ConstrainedTypeParserServices = Readonly<{
esTreeNodeToTSNodeMap: Readonly<{
get: (key: Readonly<TSESTree.Node>) => ts.Node | undefined;
}>;
getTypeAtLocation?: (
node: Readonly<TSESTree.Node>
) => Readonly<ts.Type> | ts.Type;
program?: null | Readonly<{
getTypeChecker: () => ts.TypeChecker;
}>;
}>;
Defined in: _internal/constrained-type-at-location.ts:19