(value: number)
| 25 | const logger = createLogger('OrganizationBilling') |
| 26 | |
| 27 | function roundCurrency(value: number): number { |
| 28 | return Math.round(value * 100) / 100 |
| 29 | } |
| 30 | |
| 31 | interface OrganizationUsageData { |
| 32 | organizationId: string |
no outgoing calls
no test coverage detected