UNPKG

@joker.front/ast

Version:

### Overview

9 lines (8 loc) 196 B
import { AST } from "../type"; export type CreateComment = (text: string) => AST.Comment; /** * 创建注释节点 * @param text * @returns */ export declare let createComment: CreateComment;