Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/recast/lib/printer.d.ts
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

15 lines
340 B
TypeScript

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 };