假设我有一个文件Sub CopyAllCSV()
Dim sFile As String
Dim wsPaste As Worksheet
Const sFolder As String = "Z:\project\path"
Set wsPaste = ThisWorkbook.Worksheets("Munka1")
sFile = Dir(sFolder & "\*.csv")
Do While sFile <> ""
With Workbooks.Open(Filename:=sFolder & "\" & sFile, Local:=True)
With .Worksheets(1)
.Range("A2", .Cells(Rows.Count, "E").End(xlUp)).SpecialCells(xlCellTypeVisible).Copy
End With
wsPaste.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlValues
.Close savechanges:=False
End With
sFile = Dir
Loop
End Sub
,其中包含4个命名的导入文件:
a.ts
然后,当我想从export const one = 1
export const two = 2
export const three = 3
export const four = 4
导入一些变量时,我有一个文件b.ts
。
a.ts
在大括号内单击时,是否可以从Typescript或VS Code获取建议?类似于弹出菜单,它列出了可以从该文件完成的所有可能的导入。
答案 0 :(得分:1)
将光标放在导入行的花括号内,然后尝试在IDE中按CTRL-Space。在WebStorm IDE中,这显示了可能的导入。