Type alias ResolvedLsOptions

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.

Since

1.0.0

See

Generated using TypeDoc v0.25.12