EntriesOutputType
EntriesOutputType<
E
>:AddQuestionMarks
<{ [k in keyof E]: E[k] extends DefinedEntrySchema ? Object : E[k] extends OptionalSchema ? Object | undefined : never }>
Gets the output type for entries matching a given schema. The output type is a record mapping string keys to PODValues, and is therefore similar to PODEntries, but is specific about the values that certain entries ought to have.
Type Parameters
• E extends EntriesSchema