(functionName, applicationId)
| 174 | } |
| 175 | |
| 176 | export function removeFunction(functionName, applicationId) { |
| 177 | remove(Category.Functions, functionName, applicationId); |
| 178 | } |
| 179 | |
| 180 | export function removeTrigger(type, className, applicationId) { |
| 181 | remove(Category.Triggers, `${type}.${className}`, applicationId); |
nothing calls this directly
no test coverage detected
searching dependent graphs…