UNPKG

lightrail-client

Version:
11 lines (10 loc) 312 B
import { LightrailResponse } from "../LightrailResponse"; import { Currency } from "../../model/Currency"; export interface CreateCurrencyParams { code: string; name: string; symbol: string; decimalPlaces: number; } export interface CreateCurrencyResponse extends LightrailResponse<Currency> { }