Skip to content

Commit

Permalink
remove unused api version
Browse files Browse the repository at this point in the history
  • Loading branch information
Larocceau committed Oct 4, 2024
1 parent 9024a45 commit f5ded7a
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions src/AgGrid.fs
Original file line number Diff line number Diff line change
Expand Up @@ -754,17 +754,6 @@ type AgGrid<'row> =
| BuiltIn of BuiltInMenuItem
| Custom of MenuItemDef

/// See https://www.ag-grid.com/react-data-grid/grid-interface/#grid-api.
[<Erase>]
type IGridApi<'row> =
abstract copyToClipboard: unit -> unit
abstract pasteFromClipboard: unit -> unit
abstract refreshCells: unit -> unit
abstract redrawRows: unit -> unit
abstract setGridOption: string -> obj -> unit
abstract getSelectedNodes: unit -> IRowNode<'row>[]
abstract getCellRanges: unit -> ICellRange[]

[<Erase>]
type ColumnDef<'row> =
static member inline filter(v: RowFilter) = columnDefProp<'row, 'value> ("filter" ==> v.FilterText)
Expand Down Expand Up @@ -798,4 +787,4 @@ type AgGrid<'row> =
| BuiltIn builtInItemName -> box builtInItemName.BuiltInMenuItemText
| Custom customMenuItem -> box customMenuItem
|]
)
)

0 comments on commit f5ded7a

Please sign in to comment.