1.1.3 • Published 1 year ago
@hrc/type-utils v1.1.3
@hrc/type-utils
Type utilities used by the following packages of <hrc
/>:
Installation
npm install @hrc/type-utilsUsage
import type { Simplify } from "@hrc/type-utils";
type MyType = {
a: number;
b: string;
};
type AnotherType = {
c: boolean;
d: number;
};
type FlattenedType = Simplify<MyType & AnotherType>;