Estoy mirando el código de algunas bibliotecas y en una de ellas vi esta sintaxis:
export const v4: v4; // What's the meaning of this export style, is it an object?Y luego, durante la importación, noté que alguien lo importó así:
const { v4: uuidv4 } = require('uuid'); // Also, what is the meaning of this import style?Esto me deja confundido de la forma normal en que suelo exportar e importar.