mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 21:59:29 +08:00
7 lines
357 B
Text
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;
|