| 210 | * Grant session store |
| 211 | */ |
| 212 | export interface GrantSessionStore { |
| 213 | /** |
| 214 | * Get item from session store |
| 215 | */ |
| 216 | get: (sid: string) => any |
| 217 | /** |
| 218 | * Set item in session store |
| 219 | */ |
| 220 | set: (sid: string, json: any) => void |
| 221 | /** |
| 222 | * Remove item from session store |
| 223 | */ |
| 224 | remove?: (sid: string) => void |
| 225 | } |
| 226 | |
| 227 | // ---------------------------------------------------------------------------- |
| 228 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…