Action
    Preparing search index...

    Type Alias EntryPointSynchronousFunction<T>

    EntryPointSynchronousFunction: T extends (
        ...args: unknown[],
    ) => Promise<unknown>
        ? never
        : T

    A synchronous function (does not return a Promise) to be used as an entry point of an action.

    Type Parameters

    • T