mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-07-15 04:43:36 +00:00
8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module "*.svg?react" {
|
|
import type { FC, SVGProps } from "react";
|
|
const ReactComponent: FC<SVGProps<SVGSVGElement>>;
|
|
export default ReactComponent;
|
|
}
|