@fe-hl/shared
Version:
javascript常用工具库,支持typescript
10 lines (9 loc) • 637 B
TypeScript
import { BigSource } from 'big.js';
export declare const bigPlus: (...values: BigSource[]) => string;
export declare const bigSubtract: (...values: BigSource[]) => string;
export declare const bigMultiply: (...values: BigSource[]) => string;
export declare const bigDivide: (...values: BigSource[]) => string;
export declare const bigRound: (num: BigSource, digits?: number) => string;
export declare const bigFenToYuan: (fen: BigSource, digits?: number) => string;
export declare const bigYuanToFen: (yuan: BigSource, digits?: number) => string;
export declare const bigYuanTowan: (yuan: BigSource, digits?: number) => string;