mortgage-calculator-package
Version:
A simple, embeddable mortgage calculator that dynamically generates an interactive and styled calculator widget. It allows users to input mortgage amount, interest rate, amortization period, and payment frequency, and calculates the monthly payment based
11 lines (10 loc) • 390 B
TypeScript
import './styles.scss';
interface InitParams {
containerId: string;
product: "calculator" | "market-trend-videos" | "faqs" | "research-articles" | "mortgage-news" | "mortgage-glossary" | "educational-videos" | "cockpit" | "free-guides" | "mortgage-calender";
options?: {
applyUrl?: string;
};
}
export declare function init(initParams: InitParams): void;
export {};