(api: ReturnType<typeof appOf>, key: string)
| 77 | } |
| 78 | |
| 79 | function getItem(api: ReturnType<typeof appOf>, key: string) { |
| 80 | return api.inject({ method: 'GET', url: `/api/v1/gui/store/getItem?key=${key}` }); |
| 81 | } |
| 82 | |
| 83 | function setItem(api: ReturnType<typeof appOf>, key: string, value: string) { |
| 84 | return api.inject({ |
no test coverage detected