Editor类型提示文件错误

在Editor的类型提示文件里标注的await Editor.Message.request(‘scene’, ‘query-components’)返回的是string[]
但是实际上这个api返回的应该是这样的类型componentInfo[]

interface componentInfo {
    name: string
    cid: string
    path: string
    assetUuid?: string
}


image