@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
18 lines (17 loc) • 466 B
TypeScript
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* A currency associated with a balance or address.
* @export
* @enum {string}
*/
export declare const Currency: {
readonly Usd: "USD";
readonly Eur: "EUR";
readonly Btc: "BTC";
readonly Eth: "ETH";
};
export declare type Currency = typeof Currency[keyof typeof Currency];