summaryrefslogtreecommitdiff
path: root/src/types/Price.d.ts
blob: fc9d9fbc4075d80445415f13aed32269f94aacf4 (plain)
1
2
3
4
5
import type Digit from "./Digit";

type Price = `${bigint | ''}.${Digit}${Digit}`;

export default Price;