Files

16 lines
412 B
TypeScript
Raw Permalink 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