woocommerce/packages/js/number/typings/index.d.ts

5 lines
206 B
TypeScript
Raw Normal View History

2022-05-19 03:34:58 +00:00
declare module 'locutus/php/strings/number_format' {
const number_format: (number: number | string, decimals?: number, decPoint?: string, thousandsSep?: string) => string;
export default number_format;
}