package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | LibFile of string
  2. | SourceFile of string
  3. | JsonFile of string
  4. | ResourceFile of string
  5. | Builtins
val equal : t -> t -> Ppx_deriving_runtime.bool
val to_string : t -> string
val to_path : t -> (string, string) result
val compare : t -> t -> int
val compare_opt : t option -> t option -> int
val is_lib_file : t -> bool
val map : (string -> string) -> t -> t
val exists : (string -> bool) -> t -> bool
val check_suffix : t -> string -> bool
val chop_suffix : t -> string -> t
val with_suffix : t -> string -> t