Type Alias PropsStrict<Tinput, Toptions>

PropsStrict<Tinput, Toptions>: IsAnyOrUnknown<Toptions> extends true
    ? Props<Tinput, IKeys_DefaultOptions>
    : IsPropTrue<"own", Toptions, true> extends true
        ? Exclude<PropsOfStringOrSymbol<Tinput, Toptions>, never>
        : never

Like Props, excluding props of the BaseType (only own)

Type Parameters