Skip to content

Commit b3eae30

Browse files
committed
Move TypeScript definition to root
1 parent e044185 commit b3eae30

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

jsx.d.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { VNode } from 'preact';
2+
3+
interface Options {
4+
jsx?: boolean;
5+
xml?: boolean;
6+
functions?: boolean
7+
functionNames?: boolean,
8+
skipFalseAttributes?: boolean
9+
pretty?: boolean | string;
10+
}
11+
12+
export function render(vnode: VNode, context?: any, options?: Options):string;
13+
export default render;

0 commit comments

Comments
 (0)