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 bothnullandundefinedvalues are omitted, except for theexcludeproperty which keeps theundefinedtype.