UNPKG

@focuson/form_components

Version:

Components that can be used by @focuson/forms

10 lines (9 loc) 516 B
import { LensState } from "@focuson/state"; import { CommonTableProps } from "./table"; import { NameAnd } from "@focuson/utils"; import { PageSelectionContext } from "@focuson/pages"; export interface TableWithVaryingOrderProps<S, T, C> extends CommonTableProps<S, T, C> { order: NameAnd<string[]>; select: LensState<S, string, C>; } export declare function TableWithVaryingOrder<S, T, C extends PageSelectionContext<S>>(props: TableWithVaryingOrderProps<S, T, C>): import("react/jsx-runtime").JSX.Element;