We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e044185 commit b3eae30Copy full SHA for b3eae30
jsx.d.ts
@@ -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