()
| 71 | |
| 72 | // @deprecated use currentVersionInfo instead |
| 73 | export async function getCurrentVersionInfo(): Promise<{ |
| 74 | name?: string; |
| 75 | description?: string; |
| 76 | metaInfo?: string; |
| 77 | }> { |
| 78 | return currentVersion ? (await getLocalHashInfo(currentVersion)) || {} : {}; |
| 79 | } |
| 80 | |
| 81 | export const pushyNativeEventEmitter = new NativeEventEmitter(PushyModule); |
| 82 |
nothing calls this directly
no test coverage detected