1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-25 07:47:55 +01:00

11 lines
313 B
TypeScript
Raw Normal View History

// noinspection JSUnusedGlobalSymbols
declare module 'mithril-node-render' {
import m from 'mithril';
export const escapeText: string;
export const escapeAttribute: string;
2022-01-27 18:31:26 +01:00
export default function render(vnode: m.Vnode | m.Vnode[]): string;
export function sync(vnode: m.Vnode | m.Vnode[]): string;
}