@vgerbot/async
    Preparing search index...

    Interface TaskOptions

    Configuration metadata associated with a submitted task. kind enables grouping for selective cancellation, while name provides a human-readable label for debugging and observability.

    interface TaskOptions {
        kind?: string;
        metadata?: Record<string, unknown>;
        name?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    kind?: string
    metadata?: Record<string, unknown>
    name?: string