(key: string)
| 45 | * @publicApi |
| 46 | */ |
| 47 | export function makeStateKey<T = void>(key: string): StateKey<T> { |
| 48 | return key as StateKey<T>; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * A key value store that is transferred from the application on the server side to the application |
no outgoing calls
no test coverage detected
searching dependent graphs…