( config?: SingleStoreDriverDrizzleConfig<TSchema>, )
| 185 | |
| 186 | export namespace drizzle { |
| 187 | export function mock<TSchema extends Record<string, unknown> = Record<string, never>>( |
| 188 | config?: SingleStoreDriverDrizzleConfig<TSchema>, |
| 189 | ): SingleStoreDriverDatabase<TSchema> & { |
| 190 | $client: '$client is not available on drizzle.mock()'; |
| 191 | } { |
| 192 | return construct({} as any, config) as any; |
| 193 | } |
| 194 | } |
nothing calls this directly
no test coverage detected