You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{merge}from"ts-deepmerge";consta: {o: string}={o: "Hello"};constb: {o?: string}={};constc=merge.withOptions({allowUndefinedOverrides: false},a,b);// this is incorrect// c is of type { o: string | undefined }// but should be// { o: string }// since c.o can never be undefined