Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/toFixed.d.ts

16 lines
412 B
TypeScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/**
*
* @param num /
* @param digits
*/
export declare function toFixed(num: number | string | null, digits?: number): string;
export declare function toFixed(num: any, digits?: number): string;
declare module './ctor' {
interface XEUtilsMethods {
toFixed: typeof toFixed;
}
}
export default toFixed