nestjs-temporal-core
    Preparing search index...

    Interface MethodExtractionResult

    Shared result shape for signal, query, and update method extraction. All three operations return the same structure.

    interface MethodExtractionResult {
        errors: { error: string; method: string }[];
        methods: Record<string, string>;
        success: boolean;
    }
    Index
    errors: { error: string; method: string }[]
    methods: Record<string, string>
    success: boolean