First Alpha
This commit is contained in:
15
src/types.d.ts
vendored
15
src/types.d.ts
vendored
@ -1,2 +1,13 @@
|
||||
// import { Component } from "preact";
|
||||
declare module "*.svg";
|
||||
declare module "*.svg" {
|
||||
const SVG: (props: {
|
||||
width?: number | undefined
|
||||
height?: number | undefined
|
||||
onClick?: (evt: MouseEvent) => void;
|
||||
style?: string;
|
||||
}) => JSX.Element;
|
||||
export default SVG;
|
||||
}
|
||||
|
||||
interface Window {
|
||||
debug: any;
|
||||
}
|
Reference in New Issue
Block a user