(hash: string, info: Record<string, any>)
| 35 | export const currentVersion: string = PushyConstants.currentVersion; |
| 36 | |
| 37 | export function setLocalHashInfo(hash: string, info: Record<string, any>) { |
| 38 | PushyModule.setLocalHashInfo(hash, JSON.stringify(info)); |
| 39 | } |
| 40 | |
| 41 | const currentVersionInfoString: string = PushyConstants.currentVersionInfo; |
| 42 | let _currentVersionInfo: Record<string, any> = {}; |
no test coverage detected