Assuming this situation:
interface A {
a: string;
b?: string;
c?: string;
}
const myobj = {
a: "test",
b: "test2"
}
I'm trying to use generics to dynamically contruct a type like below, containing only those properties from A that are not defined on myobj:
interface AA {
c: string;
}
How can this be done? I've attempted various strategies, e.g. using Exclude<>, Omit<> and "-?" but gotten nowhere so far.
Try