Allowing at Least One Property
function loadVideo(formats: Split<VideoFormatURLs>) {
// tbd
}
loadVideo({});
// ^
// Argument of type '{}' is not assignable to parameter
// of type 'Split<VideoFormatURLs>'
loadVideo({
format480p: new URL("..."),
}); // all good