import * as prettier from 'prettier3'; /* c8 ignore start */ export type PrettierOptions = prettier.Options; export const formatWithPrettier: typeof prettier.format = (content, options) => { return prettier.format(content, options); }; /* c8 ignore stop */