blob: 623d6f12368d7d712e5eb504892703e2405acfd3 (
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 : Vyconf_config.t -> t
val test : t -> (unit, string) result
|