Home / Type/ SingleStoreDeleteWithout Type — drizzle-orm Architecture

SingleStoreDeleteWithout Type — drizzle-orm Architecture

Architecture documentation for the SingleStoreDeleteWithout type/interface in delete.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  05d863f2_c57f_4896_7973_a002e9d31780["SingleStoreDeleteWithout"]
  a48944c4_ea91_ad5b_6028_9e0244f4093d["delete.ts"]
  05d863f2_c57f_4896_7973_a002e9d31780 -->|defined in| a48944c4_ea91_ad5b_6028_9e0244f4093d
  style 05d863f2_c57f_4896_7973_a002e9d31780 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/singlestore-core/query-builders/delete.ts lines 23–37

export type SingleStoreDeleteWithout<
	T extends AnySingleStoreDeleteBase,
	TDynamic extends boolean,
	K extends keyof T & string,
> = TDynamic extends true ? T
	: Omit<
		SingleStoreDeleteBase<
			T['_']['table'],
			T['_']['queryResult'],
			T['_']['preparedQueryHKT'],
			TDynamic,
			T['_']['excludedMethods'] | K
		>,
		T['_']['excludedMethods'] | K
	>;

Frequently Asked Questions

What is the SingleStoreDeleteWithout type?
SingleStoreDeleteWithout is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/singlestore-core/query-builders/delete.ts.
Where is SingleStoreDeleteWithout defined?
SingleStoreDeleteWithout is defined in drizzle-orm/src/singlestore-core/query-builders/delete.ts at line 23.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free