blob: 16538c10994d87d2455b0a827d835ff7508643ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import { StaticImageData } from 'next/image';
import { Meta } from './app';
export type MDXData = {
file: string;
image: StaticImageData;
};
export type MDXPageMeta = Pick<Meta<'page'>, 'cover' | 'dates' | 'seo'> & {
intro: string;
title: string;
};
export type MDXProjectMeta = Exclude<Meta<'project'>, 'wordsCount'> & {
intro: string;
title: string;
};
|