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

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

export default Price;