UNPKG

ts-budgie

Version:

Converts TypeScript code to Budgie.

8 lines (7 loc) 344 B
import * as ts from "typescript"; import { Transformation } from "../output/transformation"; export declare type ICommentVisitor = (fullText: string, comment: ts.CommentRange) => Transformation[] | undefined; export interface ICommentVisitors { [i: number]: ICommentVisitor; } export declare const commentVisitors: ICommentVisitors;