crnt - v0.0.31
    Preparing search index...

    Interface Options

    Common options for crnt operations. This controls the timeout and cancellation behavior of a given function.

    interface Options {
        signal?: AbortSignal;
        timeout?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    signal?: AbortSignal

    same signature as fetch(), but for aborting operations. If provided, the operation will be aborted when the signal is aborted.

    timeout?: number

    timeout in milliseconds. This works in tandem with the signal option, whichever triggers first (signal or timeout) will abort the operation.