diff options
Diffstat (limited to 'src/vite-env.d.ts')
| -rw-r--r-- | src/vite-env.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts index 0eb4024..9f74198 100644 --- a/src/vite-env.d.ts +++ b/src/vite-env.d.ts @@ -1,9 +1,9 @@ /// <reference types="vite/client" /> declare module "*.md" { import { FC } from "react"; - const attributes: Record<string, any>; + const attributes: Record<string, unknown>; const markdown: string; const ReactComponent: FC; export { attributes, markdown, ReactComponent }; export default ReactComponent; -}
\ No newline at end of file +} |
