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

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

export default Price;