package incr_dom_partial_render

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file row_node_spec.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
open! Core
open! Import

module Cell = struct
  type t =
    { attrs : Vdom.Attr.t list
    ; nodes : Vdom.Node.t list
    }
end

type t =
  { row_attrs : Vdom.Attr.t list
  ; cells : Cell.t list
  }