Documentation - v7.8.0
    Preparing search index...

    Type Alias FunctionField

    FunctionField: { signature?: (...args: any[]) => any; type: "function" } & Optionality & Multiple & Strict

    A field expecting a function value.

    Type Declaration

    • Optionalsignature?: (...args: any[]) => any

      Phantom property, never set at runtime. Assign undefined as YourFnType | undefined to make InferredConfig infer that specific function type instead of the generic (...args: unknown[]) => unknown fallback.

    • type: "function"