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,