/** * @import { Declaration, MaybeNamedClassDeclaration, MaybeNamedFunctionDeclaration, Node * } from 'estree-jsx' */ // Fix to show references to above types in VS Code. '' /** * Check if `node` is a declaration. * * @param {Readonly} node * Node to check. * @returns {node is Declaration | MaybeNamedClassDeclaration | MaybeNamedFunctionDeclaration} * Whether `node` is a declaration. */ export function isDeclaration(node) { return Boolean( node.type === 'FunctionDeclaration' || node.type === 'ClassDeclaration' || node.type === 'VariableDeclaration' ) }