| 15 | export type OnModal = (nonce: string, id: string) => Promise<string>; |
| 16 | |
| 17 | export interface WaitMjEvent { |
| 18 | nonce: string; |
| 19 | prompt?: string; |
| 20 | id?: string; |
| 21 | del?: boolean; // is delete message |
| 22 | onmodal?: OnModal; |
| 23 | } |
| 24 | export interface MJEmit { |
| 25 | error?: Error; |
| 26 | message?: MJMessage; |
nothing calls this directly
no outgoing calls
no test coverage detected