import { type ASTPath, type default as core, type ImportDeclaration } from 'jscodeshift'; export function hasImportDeclaration( j: core.JSCodeshift, source: string, importPath: string, ): boolean { return ( j(source) .find(j.ImportDeclaration) .filter((path: ASTPath) => path.node.source.value === importPath).length > 0 ); }