DisBot
    Preparing search index...

    Type Alias DynamicClientExtensionThisBuiltin<TypeMap, TypeMapCb, ExtArgs>

    type DynamicClientExtensionThisBuiltin<
        TypeMap extends TypeMapDef,
        TypeMapCb extends TypeMapCbDef,
        ExtArgs extends Record<string, any>,
    > = {
        $extends: ExtendsHook<
            "extends",
            TypeMapCb,
            ExtArgs,
            Call<TypeMapCb, { extArgs: ExtArgs }>,
        >;
        $connect(): Promise<void>;
        $disconnect(): Promise<void>;
        $transaction<P extends PrismaPromise<any>[]>(
            arg: [...P[]],
            options?: { isolationLevel?: TypeMap["meta"]["txIsolationLevel"] },
        ): Promise<UnwrapTuple<P>>;
        $transaction<R>(
            fn: (
                client: Omit<
                    DynamicClientExtensionThis<TypeMap, TypeMapCb, ExtArgs>,
                    ITXClientDenyList,
                >,
            ) => Promise<R>,
            options?: {
                isolationLevel?: TypeMap["meta"]["txIsolationLevel"];
                maxWait?: number;
                timeout?: number;
            },
        ): Promise<R>;
    }

    Type Parameters

    Index

    Properties

    $extends: ExtendsHook<
        "extends",
        TypeMapCb,
        ExtArgs,
        Call<TypeMapCb, { extArgs: ExtArgs }>,
    >

    Methods