Introduction
Migration
Configuration
Fundamentals
Advanced
Authentication & Security
API & Documentation
ORM
Orchestration & Workflow
Testing
Third-parties
Links
Premium ConfigSource
Premium TestContainers
Appearance
import { PropsToShape } from "@tsed/specs/schema/src/domain/types";
See /packages/specs/schema/src/domain/types.ts.
type PropsToShape<P extends Record<string, JsonSchema<any>>> = { [K in keyof P]: Infer<P[K]>; };
[K in keyof P]: Infer<P[K]>;