(key: unknown)
| 26 | * A function which creates a Context value object |
| 27 | */ |
| 28 | export const createContext = <ValueType>(key: unknown) => |
| 29 | key as Context<typeof key, ValueType>; |
| 30 | |
| 31 | /** |
| 32 | * A callback which is provided by a context requester and is called with the value satisfying the request. |
no outgoing calls
no test coverage detected
searching dependent graphs…