| 12 | type Value = string | number | boolean | undefined | null; |
| 13 | type Mapping = Record<string, any>; |
| 14 | interface ArgumentArray extends Array<Argument> {} |
| 15 | interface ReadonlyArgumentArray extends ReadonlyArray<Argument> {} |
| 16 | type Argument = Value | Mapping | ArgumentArray | ReadonlyArgumentArray; |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…