From 977ddb6574e3755f96511b956b50829481461838 Mon Sep 17 00:00:00 2001 From: Cole Lawrence Date: Fri, 24 Jun 2022 08:42:28 -0400 Subject: [PATCH] doc: Light doc comment for isPropConfigComposite --- theatre/shared/src/propTypes/utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/theatre/shared/src/propTypes/utils.ts b/theatre/shared/src/propTypes/utils.ts index eed0d71..fbcf516 100644 --- a/theatre/shared/src/propTypes/utils.ts +++ b/theatre/shared/src/propTypes/utils.ts @@ -8,6 +8,7 @@ import type { import type {PathToProp} from '@theatre/shared/utils/addresses' import type {$IntentionalAny} from '@theatre/shared/utils/types' +/** Either compound or enum properties can be considered "composite" */ export function isPropConfigComposite( c: PropTypeConfig, ): c is PropTypeConfig_Compound<{}> | PropTypeConfig_Enum {