Fix typo in type-helpers.test-d.ts

This commit is contained in:
NightKev 2025-08-02 15:31:49 -07:00
parent fc2eb7fd41
commit 2baedb1263

View File

@ -21,7 +21,7 @@ describe("AtLeastOne", () => {
expectTypeOf<{ baz: number | string }>().toExtend<AtLeastOne<fakeObj>>();
});
it("should convert to a partial intersected with the union of all individual single properties", () => {
it("should convert to a partial intersection with the union of all individual single properties", () => {
expectTypeOf<AtLeastOne<fakeObj>>().branded.toEqualTypeOf<
Partial<fakeObj> & ({ foo: number } | { bar: string } | { baz: number | string })
>();