Now with PS supporting polymorphic labels there is no need in phantom rows. We can use `RowCons` for this. E.g. ``` lineSeries :: forall r rr. RowCons "series" LineSeries r rr => LineSeriesR -> r -> rr lineSeries = ... ``` This also removes need of returning `Foreign` from `getOption` because we can know that field is set and can use https://github.com/purescript/purescript/blob/e4ff177017f1411ad4cbeade129cfe1bb52d6e99/examples/passing/PolyLabels.purs#L21
Now with PS supporting polymorphic labels there is no need in phantom rows. We can use
RowConsfor this. E.g.This also removes need of returning
ForeignfromgetOptionbecause we can know that field is set and can use https://github.com/purescript/purescript/blob/e4ff177017f1411ad4cbeade129cfe1bb52d6e99/examples/passing/PolyLabels.purs#L21