(role: string | undefined)
| 821 | }; |
| 822 | |
| 823 | export const isCancel = (role: string | undefined): boolean => { |
| 824 | return role === 'cancel' || role === BACKDROP; |
| 825 | }; |
| 826 | |
| 827 | const defaultGate = (h: any) => h(); |
| 828 |
no outgoing calls
no test coverage detected