Fraci
    Preparing search index...

    Type Alias SupportedDrizzleDatabase

    Structural type shared by asynchronous Drizzle database clients.

    Drizzle renamed its public database base classes in v1. Depending only on the query entry point used by fraci keeps this type compatible with both Drizzle v0 and v1 without weakening the inferred table, group, or cursor types.

    type SupportedDrizzleDatabase = {
        select: any;
    }
    Index
    select: any