Created
February 10, 2021 14:45
-
-
Save nafeu/f5b62ea51007b7fb2d5cc65b8d831f88 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
| /* 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