eyes-of-a-trader/types/helpers/PaymentHelper.d.ts

15 lines
319 B
TypeScript
Raw Normal View History

2023-01-15 09:44:31 +11:00
export declare class PaymentHelper {
/**
* Check whether tpl is Money
* @param {string} tpl
* @returns void
*/
isMoneyTpl(tpl: string): boolean;
/**
* Gets currency TPL from TAG
* @param {string} currency
* @returns string
*/
getCurrency(currency: string): string;
}