| 1 | import type { Subject } from 'rxjs' |
| 2 | export interface NotificationObject { |
| 3 | type?: 'pending' | 'success' | 'error' | 'hint' |
| 4 | message?: string |
| 5 | autoDismiss?: number |
| 6 | onclick?: (event: any) => void |
| 7 | eventCode?: string |
| 8 | } |
| 9 | |
| 10 | export interface ContractCall { |
| 11 | contractType?: string |
nothing calls this directly
no outgoing calls
no test coverage detected