@tryforge/forgescript
    Preparing search index...

    Type Alias NativeFunctionExecutor<T, Unwrap>

    NativeFunctionExecutor: Unwrap extends true
        ? (
            this: CompiledFunction<T, Unwrap>,
            ctx: Context,
            args: UnwrapArgs<T>,
        ) => Promise<Return> | Return
        : (
            this: CompiledFunction<T, Unwrap>,
            ctx: Context,
        ) => Promise<Return> | Return

    Type Parameters

    • T extends [...IArg[]]
    • Unwrap extends boolean = boolean