UNPKG

website-templates

Version:

A React component for an Website Templates styled with Tailwind CSS

12 lines (11 loc) 460 B
import { GoldPrice } from "../types/gold-price.interface"; import { IWebsite } from "../types/identity.interface"; type TModifiedGoldPrices = { tenTola: number | string; jewellery22k: number | string; gold9999Gm: number | string; gold9999Kg: number | string; kilobar995: number | string; }; export declare function calculateModifiedGoldPrices(goldPrice: GoldPrice, webInfo: IWebsite, decimalPlace?: number): TModifiedGoldPrices; export {};