You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
216 B
12 lines
216 B
6 years ago
|
[@deriving (eq, ord)]
|
||
|
type t;
|
||
|
|
||
|
let make: (~major: int, ~minor: int, ~patch: int) => t;
|
||
|
|
||
|
let fromString: string => option(t);
|
||
|
let toString: t => string;
|
||
|
|
||
|
let major: t => int;
|
||
|
let minor: t => int;
|
||
|
let patch: t => int;
|