packages feed

chiasma-0.2.0.0: lib/Chiasma/Codec/Data/Window.hs

module Chiasma.Codec.Data.Window where

import Chiasma.Codec (TmuxCodec)
import Chiasma.Data.TmuxId (WindowId)

data Window =
  Window {
    windowId :: WindowId,
    windowWidth :: Int,
    windowHeight :: Int
  }
  deriving (Eq, Show, Generic, TmuxCodec)