ixfx
    Preparing search index...

    Type Alias ExpressionOrResult<ArgsType, ResultType>

    ExpressionOrResult:
        | ResultType
        | (
            (
                args: ArgsType | undefined,
            ) => Promise<ResultType | undefined> | ResultType | undefined | void
        )

    Type Parameters

    • ArgsType
    • ResultType