参考运行时屏幕版本: v2.9.0本页内容屏幕这些方法提供有关当前连接的屏幕的信息。ScreenGetAll返回当前连接的屏幕列表。Go: ScreenGetAll(ctx context.Context) []screenJS: ScreenGetAll()ScreenGo 结构体type Screen struct { IsCurrent bool IsPrimary bool Width int Height int}Typescript 接口interface Screen { isCurrent: boolean; isPrimary: boolean; width : number height : number}