@medusajs/types
Version:
Medusa Types definition
16 lines • 409 B
TypeScript
import { PaginatedResponse } from "../../common";
import { AdminCurrency } from "./entities";
export interface AdminCurrencyResponse {
/**
* The currency's details.
*/
currency: AdminCurrency;
}
export interface AdminCurrencyListResponse extends PaginatedResponse<{
/**
* The list of currencies
*/
currencies: AdminCurrency[];
}> {
}
//# sourceMappingURL=responses.d.ts.map