blob: d8e2cfa1dd8a25ad4482d992eab3a6e8b32dc99d [file] [log] [blame]
export interface PrintResultType {
code: string;
map?: any;
toString(): string;
}
interface PrinterType {
print(ast: any): PrintResultType;
printGenerically(ast: any): PrintResultType;
}
interface PrinterConstructor {
new (config?: any): PrinterType;
}
declare const Printer: PrinterConstructor;
export { Printer };