我遇到了這個源代碼。 我不明白的第一行:在ES6中進行導入
import type { a, b, c, d } from 'types'
有什麼用
import { a, b, c, d } from 'types'
的差別,你能解釋一下?由於
import type { a, b, c, d } from 'types'// not sure what it does
import { a, b, c, d } from 'types' // I am familar with this
單詞'type'後面是否有逗號? –
不,沒有逗號,代碼按預期工作,逗號的缺失實際上令我困惑 – Radex
代碼使用流式 – Radex