| 10 | export type Promisable<T> = T | PromiseLike<T> |
| 11 | |
| 12 | export interface Persister { |
| 13 | persistClient: (persistClient: PersistedClient) => Promisable<void> |
| 14 | restoreClient: () => Promisable<PersistedClient | undefined> |
| 15 | removeClient: () => Promisable<void> |
| 16 | } |
| 17 | |
| 18 | export interface PersistedClient { |
| 19 | timestamp: number |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…