From 429bae75c6f4afc6df9a638f9f34177c43817b11 Mon Sep 17 00:00:00 2001 From: Horus Lugo Date: Thu, 26 Oct 2023 15:40:18 +0200 Subject: [PATCH] Export VariantGroups and PatternOptions types --- .changeset/plenty-teachers-learn.md | 5 +++++ packages/recipes/src/index.ts | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .changeset/plenty-teachers-learn.md diff --git a/.changeset/plenty-teachers-learn.md b/.changeset/plenty-teachers-learn.md new file mode 100644 index 000000000..0dbba47f3 --- /dev/null +++ b/.changeset/plenty-teachers-learn.md @@ -0,0 +1,5 @@ +--- +'@vanilla-extract/recipes': patch +--- + +Export VariantGroups and PatternOptions types diff --git a/packages/recipes/src/index.ts b/packages/recipes/src/index.ts index 56dd17930..d1cd8574c 100644 --- a/packages/recipes/src/index.ts +++ b/packages/recipes/src/index.ts @@ -11,7 +11,12 @@ import type { } from './types'; import { mapValues } from './utils'; -export type { RecipeVariants, RuntimeFn } from './types'; +export type { + RecipeVariants, + RuntimeFn, + VariantGroups, + PatternOptions, +} from './types'; export function recipe( options: PatternOptions,