sidthegirlkid's picture
Upload folder using huggingface_hub
3464d09 verified
raw
history blame contribute delete
154 Bytes
export enum Comparison {
Equals = 0,
Greater = 1,
Lesser = -1
}
declare const semiver: (a: string, b: string) => Comparison;
export default semiver;