(pqKey: string)
| 18 | } |
| 19 | |
| 20 | export function remove(pqKey: string) { |
| 21 | const key = key_item(pqKey) |
| 22 | return DB.remove(APQ_CACHE, key) |
| 23 | } |
| 24 | |
| 25 | export function save(uid: string, result: APQResult, expirationTtl: number) { |
| 26 | const key = key_item(uid) |
nothing calls this directly
no test coverage detected