From bf93c2c92da8257eeddff8cb28fc4ad11bb7c0a3 Mon Sep 17 00:00:00 2001 From: Joel Carter Date: Wed, 25 Sep 2024 06:45:30 -0500 Subject: [PATCH] update description --- .../validator/src/lib/util/BoundWitnessArrayProperty.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/protocol/packages/boundwitness/packages/validator/src/lib/util/BoundWitnessArrayProperty.ts b/packages/protocol/packages/boundwitness/packages/validator/src/lib/util/BoundWitnessArrayProperty.ts index 1962788599..4e77f7fe25 100644 --- a/packages/protocol/packages/boundwitness/packages/validator/src/lib/util/BoundWitnessArrayProperty.ts +++ b/packages/protocol/packages/boundwitness/packages/validator/src/lib/util/BoundWitnessArrayProperty.ts @@ -12,6 +12,6 @@ export type BoundWitnessArrayProperty = keyof Pick /** - * A helper type to get the correct type for the `values` argument based on the `prop` + * The value of the underlying array type for the BoundWitness array property */ export type BoundWitnessArrayPropertyValue

= BoundWitness[P] extends (infer T)[] ? T : never