nestjs-temporal-core
    Preparing search index...

    Interface DiscoveryStats

    Statistics about discovered Temporal components. Provides insight into the number of workflows, activities, and other components found.

    const stats = discoveryService.getStats();
    console.log(`Found ${stats.workflows} workflows and ${stats.signals} signals`);
    interface DiscoveryStats {
        childWorkflows: number;
        controllers: number;
        methods: number;
        queries: number;
        signals: number;
        workflows: number;
    }
    Index

    Properties

    childWorkflows: number
    controllers: number
    methods: number
    queries: number
    signals: number
    workflows: number