UNPKG

itclocks

Version:

An implementation of Interval Tree Clocks in TypeScript

8 lines (7 loc) 189 B
import { ID } from "./ID"; export declare class IDs { static zero(): ID; static one(): ID; static with(left: ID, right: ID): ID; static fromString(id: string): ID; }