Skip to content

Instantly share code, notes, and snippets.

@nafeu
Created February 10, 2021 14:45
Show Gist options
  • Select an option

  • Save nafeu/f5b62ea51007b7fb2d5cc65b8d831f88 to your computer and use it in GitHub Desktop.

Select an option

Save nafeu/f5b62ea51007b7fb2d5cc65b8d831f88 to your computer and use it in GitHub Desktop.
/* Section: Interfaces and Globals */
interface Page {
path: string,
name: string,
html: string
}
interface Layout {
[key: string]: any
}
let pages: Array<Page> = [];
let layout: Layout = {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment