prorm API Reference
    Preparing search index...

    Interface DialectRegistryLike

    Minimal shape of the ORM's dialect registry (from src/dialects/dialect.tsDialectRegistry). Declared locally so this module doesn't import/modify the shared registry; the caller passes the real DialectRegistry in.

    interface DialectRegistryLike {
        register(name: string, factory: new (options: any) => any): void;
    }
    Index
    • Parameters

      • name: string
      • factory: new (options: any) => any

      Returns void