(account: string)
| 68 | }, |
| 69 | |
| 70 | async get(account: string): Promise<string | null> { |
| 71 | const mod = await loadModule() |
| 72 | const entry = new mod.Entry(SERVICE_NAME, account) |
| 73 | return entry.getPassword() |
| 74 | }, |
| 75 | |
| 76 | async delete(account: string): Promise<boolean> { |
| 77 | const mod = await loadModule() |
no test coverage detected