85 lines
1.6 KiB
TypeScript
85 lines
1.6 KiB
TypeScript
|
declare module "*.event.mdx" {
|
||
|
import { ComponentType } from "react";
|
||
|
|
||
|
interface EventMetadata {
|
||
|
name: string;
|
||
|
short: string;
|
||
|
date: Date;
|
||
|
online: boolean;
|
||
|
location: string;
|
||
|
poster?: string;
|
||
|
registerLink?: string;
|
||
|
}
|
||
|
|
||
|
const ReactComponent: ComponentType;
|
||
|
|
||
|
export const metadata: EventMetadata;
|
||
|
export default ReactComponent;
|
||
|
}
|
||
|
|
||
|
declare module "*.news.mdx" {
|
||
|
import { ComponentType } from "react";
|
||
|
|
||
|
interface NewsMetadata {
|
||
|
author: string;
|
||
|
date: Date;
|
||
|
}
|
||
|
|
||
|
const ReactComponent: ComponentType;
|
||
|
|
||
|
export const metadata: NewsMetadata;
|
||
|
export default ReactComponent;
|
||
|
}
|
||
|
|
||
|
declare module "*.team-member.mdx" {
|
||
|
import { ComponentType } from "react";
|
||
|
|
||
|
interface TeamMemberMetadata {
|
||
|
name: string;
|
||
|
role: string;
|
||
|
image?: string;
|
||
|
}
|
||
|
|
||
|
const ReactComponent: ComponentType;
|
||
|
|
||
|
export const metadata: TeamMemberMetadata;
|
||
|
export default ReactComponent;
|
||
|
}
|
||
|
|
||
|
declare module "*.section.mdx" {
|
||
|
import { ComponentType } from "react";
|
||
|
|
||
|
interface SectionMetadata {
|
||
|
title: string;
|
||
|
id: string;
|
||
|
}
|
||
|
|
||
|
const ReactComponent: ComponentType;
|
||
|
|
||
|
export const metadata: SectionMetadata;
|
||
|
export default ReactComponent;
|
||
|
}
|
||
|
|
||
|
declare module "*.talk.mdx" {
|
||
|
import { ComponentType } from "react";
|
||
|
|
||
|
interface TalkMetadata {
|
||
|
name: string;
|
||
|
short: string;
|
||
|
poster?: string;
|
||
|
}
|
||
|
|
||
|
const ReactComponent: ComponentType;
|
||
|
|
||
|
export const metadata: TalkMetadata;
|
||
|
export default ReactComponent;
|
||
|
}
|
||
|
|
||
|
declare module "*.mdx" {
|
||
|
import { ComponentType } from "react";
|
||
|
|
||
|
const ReactComponent: ComponentType;
|
||
|
|
||
|
export default ReactComponent;
|
||
|
}
|