From 9412f7ed4bdbf5c01127ea0150952375f5dc24b8 Mon Sep 17 00:00:00 2001 From: Dimitar Danailov Date: Wed, 29 May 2024 08:51:43 +0300 Subject: [PATCH] CoingeckoSimplePriceResponse is part of the configuration --- apps/website/src/types/coingecko/simplePrices/index.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 apps/website/src/types/coingecko/simplePrices/index.ts diff --git a/apps/website/src/types/coingecko/simplePrices/index.ts b/apps/website/src/types/coingecko/simplePrices/index.ts new file mode 100644 index 0000000..b241132 --- /dev/null +++ b/apps/website/src/types/coingecko/simplePrices/index.ts @@ -0,0 +1,4 @@ +import {CoingeckoSimplePriceRequest} from './RequestParams' +import {CoingeckoSimplePriceResponse} from './ResponseParams' + +export type {CoingeckoSimplePriceRequest, CoingeckoSimplePriceResponse}