rickvanlieshout.com/src/types/index.js
Aleksander Helgaker fabb799f93 Fix linting errors.
2019-08-25 13:20:50 +02:00

60 lines
986 B
JavaScript

// @flow strict
import type { Node as ReactNode } from 'react';
export type RenderCallback = {
// $FlowFixMe
render: (data: any) => ReactNode;
}
export type Entry = {
getIn: (string[]) => string;
}
export type WidgetFor = (string) => string;
export type PageContext = {
tag: string,
category: string,
currentPage: number,
prevPagePath: string,
nextPagePath: string,
hasPrevPage: boolean,
hasNextPage: boolean
};
export type Node = {
fields: {
slug: string,
categorySlug?: string,
tagSlugs?: string[]
},
frontmatter: {
date: string,
description?: string,
category?: string,
tags?: string[],
title: string,
socialImage?: string
},
html: string,
id: string
};
export type Edge = {
node: Node
};
export type Edges = Array<Edge>;
export type AllMarkdownRemark = {
allMarkdownRemark: {
edges: Edges,
},
group: {
fieldValue: string,
totalCount: number
}[]
};
export type MarkdownRemark = Node;