UNPKG

@jsdocs-io/extractor

Version:

Analyze and extract the API from npm packages

7 lines (5 loc) 212 B
import * as tsm from 'ts-morph'; import { hasFunctionLikeType } from './has-function-like-type'; export function hasVarLikeType(node: tsm.VariableDeclaration): boolean { return !hasFunctionLikeType(node); }