/** * Determine file names of the output assets (js, css, font, image...) * * @param {boolean} useHash - Whether to use hash in file names */ export default function getFileNames(useHash: boolean): { js: string; css: string; font: string; image: string; };