@matthewgapp/solidjs-flow
Version:
React Flow - A highly customizable React library for building node-based editors and interactive flow charts.
16 lines (12 loc) • 370 B
TypeScript
import { Component, JSX } from "solid-js";
declare module '*.css' {
const content: { [className: string]: string };
export default content;
}
type SvgrComponent = Component<JSX.SVGAttributes<SVGElement>>;
declare module '*.svg' {
const svgUrl: string;
const svgComponent: SvgrComponent;
export default svgUrl;
export { svgComponent as ReactComponent };
}