I want to Omit all functions from an interface
interface Human {
name: string;
age: number;
walk: () => void;
talk: (word: string) => Promise<void>
}
type HumanWithoutFunctions = RemoveFunctions<Human>
/* expected result:
HumanWithoutFunctions {
name: string;
age: number;
}
*/