类型断言1234567891011121314151617181920const el = document.querySelector('#img');(el as HTMLImageElement).src = 'xx' // 断言el就是图片元素类型// 对象内的类型断言type TestObj = { a: string};const obj = { test: <TestObj>{ a: 'aaa' }}// 或者const obj = { test: { a: 'aaa' } as TestObj ,}