From 1243622501c139b81b9a74190df8fb2285de87e9 Mon Sep 17 00:00:00 2001 From: Lukas Obermann Date: Sat, 10 Jun 2023 09:45:02 +0200 Subject: [PATCH] feat: add comment to sex type --- src/character.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/character.ts b/src/character.ts index d62078b..95bedc7 100644 --- a/src/character.ts +++ b/src/character.ts @@ -957,6 +957,9 @@ export type Character = { pact?: {} } +/** + * The character's sex. It does not have to be binary, although it always must be specified how to handle it in the context of binary sex prerequisites. You can also provide a custom sex with a custom name. + */ export type Sex = | BinarySex | NonBinarySex