UNPKG

@joker.front/ast

Version:

### Overview

9 lines (8 loc) 184 B
import { AST } from "../type"; export type CreateText = (text: string) => AST.Text; /** * 创建文本节点 * @param text * @returns */ export declare let createText: CreateText;