export default function omit>( obj: T, propToRemove: keyof T, ): Omit { const { [propToRemove]: _, ...rest } = obj; return rest; }