blob: 9a7a376111a976d7b49aea585fd747f606491f22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
type t = {
components: string;
validators: string;
migrators: string;
component_definitions: string;
interface_definitions: string;
}
val make : string -> Vyconf_config.t -> t
val test : t -> (unit, string) result
|