Skip to content

Instantly share code, notes, and snippets.

@seanhess
Created March 17, 2015 19:40
Show Gist options
  • Save seanhess/bf9c66f3be8bd689148a to your computer and use it in GitHub Desktop.
Save seanhess/bf9c66f3be8bd689148a to your computer and use it in GitHub Desktop.
Optional Types, composed types
type Searchy = {
index: string;
// type?: string;
}
type ServerSearch = {
type: string;
search: Searchy;
}
var woot:Searchy = {index:"string"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment