UNPKG

212 BPlain TextView Raw
1import * as tsm from 'ts-morph';
2import { hasFunctionLikeType } from './has-function-like-type';
3
4export function hasVarLikeType(node: tsm.VariableDeclaration): boolean {
5 return !hasFunctionLikeType(node);
6}