Created
September 4, 2016 09:10
-
-
Save buntine/16dd7a4193d9417bc03edc79adb47664 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Structure { | |
export type TabState = "impact" | "timeline" | "geography"; | |
export type OpState = "and" | "or"; | |
export interface AppState { | |
tab?: TabState, | |
op: OpState, | |
tags: Array<string>, | |
} | |
} | |
let app_state: Structure.AppState = { | |
tab: "impact", | |
op: "and", | |
tags: ["artificial-intelligence", "unix", "lisp"], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment