Home / Type/ NoUnknownKeys Type — drizzle-orm Architecture

NoUnknownKeys Type — drizzle-orm Architecture

Architecture documentation for the NoUnknownKeys type/interface in schema.types.internal.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  5946ff0f_06fd_5c97_4bcb_45ced890b115["NoUnknownKeys"]
  8beb3c26_f68c_2b02_ad7a_a436848c5635["schema.types.internal.ts"]
  5946ff0f_06fd_5c97_4bcb_45ced890b115 -->|defined in| 8beb3c26_f68c_2b02_ad7a_a436848c5635
  style 5946ff0f_06fd_5c97_4bcb_45ced890b115 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-valibot/src/schema.types.internal.ts lines 73–81

export type NoUnknownKeys<
	TRefinement extends Record<string, any>,
	TCompare extends Record<string, any>,
> = {
	[K in keyof TRefinement]: K extends keyof TCompare
		? TRefinement[K] extends Record<string, v.GenericSchema> ? NoUnknownKeys<TRefinement[K], TCompare[K]>
		: TRefinement[K]
		: DrizzleTypeError<`Found unknown key in refinement: "${K & string}"`>;
};

Frequently Asked Questions

What is the NoUnknownKeys type?
NoUnknownKeys is a type/interface in the drizzle-orm codebase, defined in drizzle-valibot/src/schema.types.internal.ts.
Where is NoUnknownKeys defined?
NoUnknownKeys is defined in drizzle-valibot/src/schema.types.internal.ts at line 73.

Analyze Your Own Codebase

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

Try Supermodel Free