commonMain.symphony.FinancialReportFormConstructors.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-input-finance-jvm Show documentation
Show all versions of symphony-input-finance-jvm Show documentation
A kotlin multiplatform library for headless spreadsheet
The newest version!
package symphony
import symphony.internal.BalanceSheetFormImpl
import symphony.internal.CashFlowStatementFormImpl
import symphony.internal.IncomeStatementFormImpl
import kotlin.js.JsName
@JsName("balanceSheetForm")
fun BalanceSheetForm(): BalanceSheetForm = BalanceSheetFormImpl()
@JsName("cashFlowStatementForm")
fun CashFlowStatementForm(): CashFlowStatementForm = CashFlowStatementFormImpl()
@JsName("incomeStatementForm")
fun IncomeStatementForm(): IncomeStatementForm = IncomeStatementFormImpl()