1import {type I18n} from '@lingui/core'
2
3export const formatCount = (i18n: I18n, num: number) => {
4 return i18n.number(num, {
5 notation: 'compact',
6 maximumFractionDigits: 1,
7 // @ts-expect-error - roundingMode not in the types
8 roundingMode: 'trunc',
9 })
10}