import _ from 'lodash'; export const omitPathParams = >( params: T ): Omit => { return _.omit(params, [ 'namespace', 'clusterID', 'page', 'perPage', 'cluster_id' ]) as Omit; };