From 893ec64390c3cf031e623abf04d88fcbc6ffdb9b Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Thu, 29 Jul 2021 22:09:22 -0700 Subject: [PATCH] Update packages/kit/types/helper.d.ts --- packages/kit/types/helper.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/kit/types/helper.d.ts b/packages/kit/types/helper.d.ts index a6e7244cb6d0..ffc2d3dfd4cf 100644 --- a/packages/kit/types/helper.d.ts +++ b/packages/kit/types/helper.d.ts @@ -32,7 +32,7 @@ export type InferValue = T extends Record = T | Promise; export type Rec = Record; export type RecursiveRequired = { - // Recursive implementation of Required utility type. + // Recursive implementation of TypeScript's Required utility type. // will continue until it reaches a primitive or union // with a Function in it, except for the 'vite' key // which we want the end result to be just a function