All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.tanstack.table.core.PaginationInstance.kt Maven / Gradle / Ivy

There is a newer version: 8.20.5-pre.809
Show newest version
// Automatically generated - do not modify!

package tanstack.table.core

import kotlinx.js.ReadonlyArray

external interface PaginationInstance {
    var setPagination: (updater: Updater) -> Unit
    var resetPagination: (defaultState: Boolean?) -> Unit
    var setPageIndex: (updater: Updater) -> Unit
    var resetPageIndex: (defaultState: Boolean?) -> Unit
    var setPageSize: (updater: Updater) -> Unit
    var resetPageSize: (defaultState: Boolean?) -> Unit
    var setPageCount: (updater: Updater) -> Unit
    var getPageOptions: () -> ReadonlyArray
    var getCanPreviousPage: () -> Boolean
    var getCanNextPage: () -> Boolean
    var previousPage: () -> Unit
    var nextPage: () -> Unit
    var getPrePaginationRowModel: () -> RowModel
    var getPaginationRowModel: () -> RowModel
    var getPageCount: () -> Int
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy