package server-reason-react

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

Source file Js_internal.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
exception Not_implemented of string

let notImplemented module_ function_ =
  let msg =
    Printf.sprintf
      "'%s.%s' is not implemented in native on `server-reason-react.js`. You are running code that depends on the \
       browser, this is not supported. If this case should run on native and there's no browser dependency, please \
       open an issue at %s"
      module_ function_ "https://github.com/ml-in-barcelona/server-reason-react/issues"
  in
  raise (Not_implemented msg)

type 'a null = 'a option
type 'a undefined = 'a option
type 'a nullable = 'a option