Type Alias TOptionalWithFlag<T, F>

TOptionalWithFlag<T, F>: F extends false
    ? TRemoveOptional<T>
    : TAddOptional<T>

Type Parameters