I found this piece of code in github and I don't understand it
function writeClients(dictionary: IReferenceDirectory[]) {
//more code here
let superClientFile = `import IClientOptions from './base/IClientOptions';\n`;
superClientFile += `import Transport from './base/Transport';\n\n`;
why don't the author import at the most top? What's the intention here? and he use +=
too