fix: type error

See: <https://github.com/vercel/next.js/issues/29788>
This commit is contained in:
NunoSempere 2022-10-21 12:57:53 +01:00
parent 133db36d69
commit ed0c6e0588
2 changed files with 8 additions and 2 deletions

View File

@ -7,8 +7,7 @@
"url": "git+https://github.com/QURIresearch/metaforecast.git"
},
"keywords": [
"forecasts",
"predictions"
"forecasts", "predictions"
],
"author": "Nuño Sempere",
"license": "MIT",

View File

@ -10,6 +10,13 @@ import twitterImg from "../../public/screenshots/twitter.png";
import { Card } from "../web/common/Card";
import { Layout } from "../web/common/Layout";
type StaticImageData = {
src: string;
height: number;
width: number;
placeholder?: string;
};
type AnyTool = {
title: string;
description: string;