Skip to content

Instantly share code, notes, and snippets.

@ccapndave
Created June 5, 2018 10:58
Show Gist options
  • Save ccapndave/c4d59bde046f4c2a19b2ea75b5566b77 to your computer and use it in GitHub Desktop.
Save ccapndave/c4d59bde046f4c2a19b2ea75b5566b77 to your computer and use it in GitHub Desktop.
import Page exposing (Page(..))
-- gives me "Module `Page` does not expose `Page`
module Page exposing (..)
import PageBase
type CustomPage
= CustomPage1
| CustomPage2
type alias Page = PageBase.Page CustomPage
module PageBase exposing (..)
type Page c
= Home
| Menu
| Custom c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment