Urara-Blog/node_modules/.pnpm-store/v3/files/bd/72531da2af976d21ec42d239f2e387bf3ff4db1c8d3b06d1b98c74d2660968d13202641d3b04aaa899ba47318528bbe28e213a7029ca6da54ccd8ff00df793
2022-08-14 01:14:53 +08:00

7 lines
357 B
Text

import { TemplateLiteral } from 'estree';
import { MustacheTag, Text } from '../../interfaces';
/**
* Transforms a list of Text and MustacheTags into a TemplateLiteral expression.
* Start/End positions on the elements of the expression are not set.
*/
export declare function nodes_to_template_literal(value: Array<Text | MustacheTag>): TemplateLiteral;