Just making sure that this in a module in our Node server is the right way to be able to use an @typedef
throughout the application instead of repeating it in every module/file it is needed. From the docs I can't determine if this is correct or not, and does anyone have an opinion on where to store global @typedefs so they are easy to find if they need to be changed when used throughout the application.
/**
* Universally unique identifier.
* @global
* @typedef {string} UUID
*/
@global
and@typedef
docs again + Google to no avail :( – Aggressor