From 711d9e74b9a8035d1f8e7791d07511be07479d3e Mon Sep 17 00:00:00 2001 From: Iwo Plaza Date: Tue, 25 Jan 2022 20:41:55 +0100 Subject: [PATCH] Fixed the ParsedConcrete type to include number keys. --- src/utilityTypes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utilityTypes.ts b/src/utilityTypes.ts index a8d96c3..ef99ec0 100644 --- a/src/utilityTypes.ts +++ b/src/utilityTypes.ts @@ -1,7 +1,7 @@ import { ISchema } from './structure/types'; export type Parsed = T extends ISchema ? I : never; -export type ParsedConcrete = B & Parsed & { type: ConcreteType }; +export type ParsedConcrete = B & Parsed & { type: ConcreteType }; export type ValueOrProvider = T | (() => T); type UndefinedKeys = {