(className: string, type: string, applicationId: string)
| 228 | } |
| 229 | |
| 230 | export function triggerExists(className: string, type: string, applicationId: string): boolean { |
| 231 | return getTrigger(className, type, applicationId) != undefined; |
| 232 | } |
| 233 | |
| 234 | export function getFunction(functionName, applicationId) { |
| 235 | return get(Category.Functions, functionName, applicationId); |
nothing calls this directly
no test coverage detected