create

inline fun <T : Any> create(    data: List<T>? = null,     dataUpdateOnEdit: Boolean = true,     options: TabulatorOptions<T> = TabulatorOptions(),     types: Set<TableType> = setOf(),     className: String? = null,     serializer: <ERROR CLASS><T>? = null,     serializersModule: <ERROR CLASS>? = null,     noinline init: Tabulator<T>.() -> Unit? = null): Tabulator<T>

A helper function to create a Tabulator object.


inline fun <T : Any, S : Any> create(    store: <ERROR CLASS><S>,     noinline dataFactory: (S) -> List<T>,     options: TabulatorOptions<T> = TabulatorOptions(),     types: Set<TableType> = setOf(),     className: String? = null,     serializer: <ERROR CLASS><T>? = null,     serializersModule: <ERROR CLASS>? = null,     noinline init: Tabulator<T>.() -> Unit? = null): Tabulator<T>

A helper function to create a Tabulator object with a general observable store.