mirror of
https://github.com/luckfox-eng29/kvm.git
synced 2026-05-26 16:15:09 +02:00
8 lines
257 B
TypeScript
8 lines
257 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="vite-plugin-svgr/client" />
|
|
declare module '*.svg' {
|
|
import { FC, SVGProps } from 'react';
|
|
export const ReactComponent: FC<SVGProps<SVGSVGElement>>;
|
|
const src: string;
|
|
export default src;
|
|
} |