end-of-semester-report/node_modules/prettier-plugin-latex/dist/standalone.d.ts
2025-05-14 16:14:35 +07:00

13 lines
407 B
TypeScript

import * as Prettier from "prettier/standalone";
/**
* Format `source` LaTeX code using Prettier to format/render
* the code.
*
* @export
* @param [source=""] - code to be formatted
* @param [options={}] - Prettier options object (you can set `printWidth` here)
* @returns formatted code
*/
export declare function printPrettier(source?: string, options?: {}): Promise<string>;
export { Prettier };