ResolvedLsOptions:{ [T in keyof LsOptions]-?: T extends "exclude" ? NonNullable<LsOptions[T]> | undefined : NonNullable<LsOptions[T]> }
Represents resolved options type for the ls* functions, where all properties are
required and both null and undefined values are omitted, except for the
exclude property which keeps the undefined type.
Represents resolved options type for the
ls*
functions, where all properties are required and bothnull
andundefined
values are omitted, except for theexclude
property which keeps theundefined
type.