15 lines
319 B
TypeScript
15 lines
319 B
TypeScript
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;
|
|
}
|