UNPKG

ts-scikit

Version:

A scientific toolkit written in Typescript

22 lines (21 loc) 461 B
/** * A GUID. */ export declare class Guid { private readonly _value; /** * Creates a new Guid. */ static Create(): Guid; private constructor(); /** * Gets the value of this guid. */ get value(): string; /** * Determines is this guid equals a provided guid. * @param guid the guid. * @returns true, if this guid equals the other guid; false, otherwise. */ equals(guid: Guid): boolean; }