interface RuntimePrismaClient {
    $connect(): Promise<void>;
    $disconnect(): Promise<void>;
    $runCommandRaw(
        command: { [key: string]: unknown },
    ): Promise<{ [key: string]: unknown }>;
    [key: string]: unknown;
}

Hierarchy

  • PrismaClientLike
    • RuntimePrismaClient

Indexable

  • [key: string]: unknown

Methods

  • Parameters

    • command: { [key: string]: unknown }

    Returns Promise<{ [key: string]: unknown }>