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.
14 lines
293 B
14 lines
293 B
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;
|