import { Workflows } from '@tapis/tapis-typescript'; import { apiGenerator, errorDecoder } from '../../utils'; const remove = ( params: Workflows.RemoveGroupSecretRequest, basePath: string, jwt: string ) => { const api: Workflows.GroupSecretsApi = apiGenerator( Workflows, Workflows.GroupSecretsApi, basePath, jwt ); return errorDecoder(() => api.removeGroupSecret(params)); }; export default remove;