This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Description
I think that
newtype QuerySelector = QuerySelector String
querySelector :: QuerySelector -> _
querySelectorAll :: QuerySelector -> _
would be much nicer than
querySelector :: String -> _
querySelectorAll :: String -> _
This would correlate with getElementById :: ElementId -> _ and other things