UNPKG

@tinymce/beehive-flow

Version:

A CLI tool implementing the beehive flow git branching process

12 lines 499 B
export declare const enum Comparison { LT = -1, EQ = 0, GT = 1 } export declare const compareNative: <A>(a: A, b: A) => Comparison; export declare const chain: (c1: Comparison, c2: Comparison) => Comparison; export declare const chainN: (...cs: Comparison[]) => Comparison; export declare const isGte: (c: Comparison) => boolean; export declare const isLte: (c: Comparison) => boolean; export declare const isNotEqual: (c: Comparison) => boolean; //# sourceMappingURL=Comparison.d.ts.map