(key: string)
| 45 | * @publicApi |
| 46 | */ |
| 47 | export function makeStateKey<T = void>(key: string): StateKey<T> { |
| 48 | return key as StateKey<T>; |
| 49 | } |
| 50 | |
| 51 | function createDictionary<T>(): Record<string, T> { |
| 52 | // StateKey can be any string, including names of special Object prototype properties. |
no outgoing calls
no test coverage detected