UNPKG

@dooboostore/dom-render

Version:
24 lines 593 B
/** * Module dependencies. */ import { CompileResult, CompilerOptions } from './types'; /** * Stringfy the given AST `node`. * * Options: * * - `compress` space-optimized output * - `sourcemap` return an object with `.code` and `.map` * * @param {Object} node * @param {Object} [options] * @return {String} * @api public */ interface StringifyOptions extends CompilerOptions { compress?: boolean; sourcemap?: boolean | 'generator'; } export default function (node: any, options?: StringifyOptions): string | CompileResult; export {}; //# sourceMappingURL=index.d.ts.map