(def, ctx)
| 127 | export type UnparsedTupleOperator = show<keyof UnparsedTupleExpressionInput> |
| 128 | |
| 129 | export const parseKeyOfTuple: IndexZeroParser<"keyof"> = (def, ctx) => |
| 130 | ctx.$.parseOwnDefinitionFormat(def[1], ctx).keyof() |
| 131 | |
| 132 | export type inferKeyOfExpression<operandDef, $, args> = show< |
| 133 | keyof inferDefinition<operandDef, $, args> |
nothing calls this directly
no test coverage detected
searching dependent graphs…