From 9adca838ef676709587099047ebe0f9676a3443a Mon Sep 17 00:00:00 2001 From: jorenbroekema Date: Fri, 14 Apr 2023 15:11:32 +0200 Subject: [PATCH] fix: export missing types --- .changeset/healthy-seas-refuse.md | 5 +++++ src/types/index.ts | 11 +++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 .changeset/healthy-seas-refuse.md diff --git a/.changeset/healthy-seas-refuse.md b/.changeset/healthy-seas-refuse.md new file mode 100644 index 0000000..8343875 --- /dev/null +++ b/.changeset/healthy-seas-refuse.md @@ -0,0 +1,5 @@ +--- +'@tokens-studio/types': patch +--- + +Export missing types. diff --git a/src/types/index.ts b/src/types/index.ts index 85674dd..309ab70 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -1,10 +1,13 @@ -export * from './ThemeObject'; -export * from './UsedTokenSetsMap'; -export * from './tokens/index'; -export * from './values/index'; export * from '../constants/BoxShadowTypes'; export * from '../constants/ColorModifierTypes'; export * from '../constants/ColorSpaceTypes'; export * from '../constants/Properties'; export * from '../constants/TokenSetStatus'; export * from '../constants/TokenTypes'; +export * from './tokens/index'; +export * from './values/index'; +export * from './CompositionTokenProperty'; +export * from './Modifier'; +export * from './ThemeObject'; +export * from './UsedTokenSetsMap'; +export * from './valueTypes';