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