Skip to content

Instantly share code, notes, and snippets.

@buntine
Created September 4, 2016 09:10
Show Gist options
  • Save buntine/16dd7a4193d9417bc03edc79adb47664 to your computer and use it in GitHub Desktop.
Save buntine/16dd7a4193d9417bc03edc79adb47664 to your computer and use it in GitHub Desktop.
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