Brian Vaughn
7 years ago
15 changed files with 88 additions and 28 deletions
@ -0,0 +1,3 @@ |
|||
declare module 'gatsby-link' { |
|||
declare module.exports: any; |
|||
} |
@ -0,0 +1,7 @@ |
|||
declare module 'glamor' { |
|||
declare module.exports: { |
|||
css: { |
|||
global: (...params: any) => void, |
|||
}, |
|||
}; |
|||
} |
@ -0,0 +1 @@ |
|||
declare function graphql(...params: any): any; |
@ -1 +0,0 @@ |
|||
var foo = 'bar'; |
@ -0,0 +1,44 @@ |
|||
/** |
|||
* Copyright (c) 2013-present, Facebook, Inc. |
|||
* |
|||
* This source code is licensed under the MIT license found in the |
|||
* LICENSE file in the root directory of this source tree. |
|||
* |
|||
* @emails react-core |
|||
* @flow |
|||
*/ |
|||
|
|||
export type Author = { |
|||
name: string, |
|||
url: string, |
|||
}; |
|||
|
|||
export type Node = { |
|||
excerpt: string, |
|||
fields: { |
|||
date?: string, |
|||
path: string, |
|||
redirect: string, |
|||
slug: string, |
|||
}, |
|||
frontmatter: { |
|||
author?: Array<Author>, |
|||
next?: string, |
|||
prev?: string, |
|||
title: string, |
|||
}, |
|||
html: string, |
|||
id: string, |
|||
}; |
|||
|
|||
export type Edge = { |
|||
node: Node, |
|||
}; |
|||
|
|||
export type allMarkdownRemarkData = { |
|||
allMarkdownRemark: { |
|||
edges: Array<Edge>, |
|||
}, |
|||
}; |
|||
|
|||
export type markdownRemarkData = Node; |
Loading…
Reference in new issue