Given a class Foo
class Foo {
foo: string;
bar: number;
baz: Date;
}
I want to create a generic type called Transmuted<T>
that would return this interface:
interface TransmutedFoo {
foo: any
bar: any
baz: any
}
How can I create this generic?