UNPKG

@zebec-network/core-utils

Version:
13 lines (12 loc) 292 B
/** * Converts percentage value to bps * @param percent * @returns */ export declare function percentToBps(percent: string | number): string; /** * Coverts bps value to percentage * @param bps * @returns */ export declare function bpsToPercent(bps: string | number | bigint): string;