( config?: DrizzleConfig<TSchema>, )
| 114 | |
| 115 | export namespace drizzle { |
| 116 | export function mock<TSchema extends Record<string, unknown> = Record<string, never>>( |
| 117 | config?: DrizzleConfig<TSchema>, |
| 118 | ): VercelPgDatabase<TSchema> & { |
| 119 | $client: '$client is not available on drizzle.mock()'; |
| 120 | } { |
| 121 | return construct({} as any, config) as any; |
| 122 | } |
| 123 | } |
nothing calls this directly
no test coverage detected