You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
293 B
15 lines
293 B
7 years ago
|
import { VNode } from 'preact';
|
||
|
|
||
|
declare module render {
|
||
|
interface Options {
|
||
|
shallow:boolean;
|
||
|
xml:boolean;
|
||
|
pretty:boolean;
|
||
|
}
|
||
|
|
||
|
function render(vnode:VNode, context?:any, options?:Options):string;
|
||
|
function shallowRender(vnode:VNode, context?:any):string;
|
||
|
}
|
||
|
|
||
|
export = render;
|