lightrail-client
Version:
A Javascript and Typescript client for Lightrail
11 lines (10 loc) • 312 B
TypeScript
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> {
}