Écran
Ces méthodes fournissent des informations sur les écrans actuellement connectés.
ScreenGetAll
Retourne une liste des écrans actuellement connectés.
Go: ScreenGetAll(ctx context.Context) []screen
JS: ScreenGetAll()
Écran
Go struct:
type Screen struct {
    IsCurrent bool
    IsPrimary bool
    Width     int
    Height    int
}
Interface Typescript :
interface Screen {
    isCurrent: boolean;
    isPrimary: boolean;
    width : number
    height : number
}