import type {Printer} from 'prettier' export const dictionaryPrinter: Printer = { print(path) { return path.node.join('\n') + '\n' }, }