RTCForge API Reference v1.1.1
    Preparing search index...

    Interface IdGenerator

    Source of unique string identifiers.

    Inject an IdGenerator wherever ids are minted so production code can use random, collision-resistant ids (randomId) while tests use predictable, sequential ids (SequentialId).

    interface IdGenerator {
        next(): string;
    }

    Implemented by

    Index

    Methods

    Methods