(arg: unknown)
| 84 | ('domain' in config || 'defaultState' in config || 'name' in config) |
| 85 | |
| 86 | const isStructuredConfig = (arg: unknown) => |
| 87 | isObject(arg) && (arg.and || arg.or) |
| 88 | |
| 89 | export function processCreateGateConfig<State>( |
| 90 | hook: typeof useGateBase, |
no test coverage detected
searching dependent graphs…