uniqueIdGenerator.d.ts 249 B

12345678910
  1. /**
  2. * Helper class used to generate session unique ID
  3. */
  4. export declare class UniqueIdGenerator {
  5. private static _UniqueIdCounter;
  6. /**
  7. * Gets an unique (relatively to the current scene) Id
  8. */
  9. static get UniqueId(): number;
  10. }