在使用Google地图的WebStorm中,您的导入过For a = 0 To b - 1
If Mail_worksheet.Cells(15, 2 + a) = Mail_worksheet1.Cells(7, 6) And Mail_worksheet.Cells(4, 2 + a) Like "E*" Then
strPath = "D:\My Documents\"
strName = "*" & Mail_worksheet.Cells(4, 2 + a).Value & "*.docx"
strFile = Dir(strPath & strName)
Do While Len(strFile) > 0
OutMail.Attachments.Add strPath & strFile
strFile = Dir
Loop
End If
Next a
。
我正在使用声明:@types/googlemaps
问题在于,每当我重新格式化代码时,该行都会被删除。
我希望WebStorm优化我的导入,但是如何让他离开那个?