aboutsummaryrefslogtreecommitdiff
path: root/src/vite-env.d.ts
blob: 0eb40247798c009b1465e9c78300240951de2f11 (plain)
1
2
3
4
5
6
7
8
9
/// <reference types="vite/client" />
declare module "*.md" {
  import { FC } from "react";
  const attributes: Record<string, any>;
  const markdown: string;
  const ReactComponent: FC;
  export { attributes, markdown, ReactComponent };
  export default ReactComponent;
}