UNPKG

260 BTypeScriptView Raw
1import * as t from '@babel/types';
2export declare type Printable = t.Node | string;
3export default class Printer {
4 private printQueue;
5 print(): string;
6 enqueue(printable: Printable): void;
7 printAndClear(): string;
8 private indentComments;
9}