UNPKG

bookish-potato-dto

Version:

## Overview A TypeScript decorators-based API for defining Data Transfer Object (DTO) classes, types, and parsers. Simplifies schema validation and type enforcement using intuitive decorators and TypeScript classes.

2 lines (1 loc) 67 B
export type Exclusive<T, U> = (T & Partial<U>) | (U & Partial<T>);