nestjs-temporal-core
    Preparing search index...

    Interface ScheduleListResult

    Result of listing schedules — thin wrapper so failures surface the same way as other schedule operations instead of throwing from an async generator.

    interface ScheduleListResult {
        error?: Error;
        schedules?: AsyncIterable<ScheduleSummary, any, any>;
        success: boolean;
    }
    Index
    error?: Error
    schedules?: AsyncIterable<ScheduleSummary, any, any>
    success: boolean