Skip to content

Commit

Permalink
fix(fractal): add missing types
Browse files Browse the repository at this point in the history
  • Loading branch information
clementprevot committed Jul 20, 2023
1 parent 7af2749 commit 5a09b30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const autocompleteContainer: ReturnType<typeof defineRecipe> =
},
})

export const autocompleteLabel = defineRecipe({
export const autocompleteLabel: ReturnType<typeof defineRecipe> = defineRecipe({
description: 'Label for autocomplete',
name: 'autocompleteLabel',

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const inputDateContainer: ReturnType<typeof defineRecipe> = defineRecipe(
},
)

export const inputDateLabel = defineRecipe({
export const inputDateLabel: ReturnType<typeof defineRecipe> = defineRecipe({
description: 'Label for date input',
name: 'inputDateLabel',

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const inputPhoneContainer: ReturnType<typeof defineRecipe> =
},
})

export const inputPhoneLabel = defineRecipe({
export const inputPhoneLabel: ReturnType<typeof defineRecipe> = defineRecipe({
description: 'Label for phone input',
name: 'inputPhoneLabel',

Expand Down

0 comments on commit 5a09b30

Please sign in to comment.