| 1 | export interface MJMessage { |
| 2 | uri: string; |
| 3 | proxy_url?: string; |
| 4 | content: string; |
| 5 | flags: number; |
| 6 | id?: string; |
| 7 | hash?: string; |
| 8 | progress?: string; |
| 9 | options?: MJOptions[]; |
| 10 | width?: number; |
| 11 | height?: number; |
| 12 | } |
| 13 | |
| 14 | export type LoadingHandler = (uri: string, progress: string) => void; |
| 15 | export type OnModal = (nonce: string, id: string) => Promise<string>; |
nothing calls this directly
no outgoing calls
no test coverage detected