diff options
Diffstat (limited to 'frontend/src')
| -rw-r--r-- | frontend/src/types/Price.d.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/src/types/Price.d.ts b/frontend/src/types/Price.d.ts new file mode 100644 index 0000000..6757717 --- /dev/null +++ b/frontend/src/types/Price.d.ts @@ -0,0 +1,5 @@ +import type Digit from './Digit'; + +type Price = `${bigint}.${Digit}${Digit}`; + +export default Price; |
