@fle-ui/plus-table
Version:
18 lines (17 loc) • 347 B
TypeScript
/**
* 金额格式化
* @param data
*/
type moneyType = number | string;
interface ShowMoneyType {
(data: moneyType): string;
}
export declare const showMoney: ShowMoneyType;
/**
* 格式化url参数
*/
export declare const parseQueryString: () => {
[key: string]: string;
};
export declare function simulateClick(): void;
export {};