Skip to content

Instantly share code, notes, and snippets.

@img
Created February 3, 2016 01:16
Show Gist options
  • Save img/e564294bbc4204759d7a to your computer and use it in GitHub Desktop.
Save img/e564294bbc4204759d7a to your computer and use it in GitHub Desktop.
export default function ({ types: t }) {
return {
visitor: {
VariableDeclarator: {
exit({ node }) {
var typedecl = t.typeAnnotation();
typedecl.typeAnnotation = t.anyTypeAnnotation();
node.id.typeAnnotation = typedecl;
}
}
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment