turbodombuilder - v0.9.48
    Preparing search index...

    Type Alias SubstrateAddCallbackProperties<Type>

    Type representing a configuration object to add a new callback to the given substrate.

    type SubstrateAddCallbackProperties<
        Type extends SubstrateChecker
        | SubstrateMutator
        | SubstrateSolver,
    > = {
        name?: string;
        callback?: Type;
        substrate?: string;
        priority?: number;
    }

    Type Parameters

    Index

    Properties

    name?: string

    The name of the callback to add.

    callback?: Type

    The callback to add.

    substrate?: string

    The substrate to add the callback to.

    priority?: number

    The priority of the callback.