Next.jsの型
InferGetStaticPropsType
便利
GetStaticPropsContext
code:ts
import { InferGetStaticPropsType, GetStaticPropsContext } from 'next';
type Props = InferGetStaticPropsType<typeof getStaticProps>;
export const getStaticProps = async (context: GetStaticPropsContext) => {
const { query } = context
};
でもpropsとparamsを先に決めておくほうが簡単な気もする