From 73ba955e344c8ccedd43235495ef8b72b5a2b6fd Mon Sep 17 00:00:00 2001 From: Ricardo Cino Date: Wed, 22 Jun 2022 00:32:18 +0200 Subject: chore: Transform AppStore.js into Typescript (#329) * turn actions into typescript * correct tsconfig * added TypedStore --- src/actions/recipe.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/actions/recipe.ts') diff --git a/src/actions/recipe.ts b/src/actions/recipe.ts index 29b0a151f..0dd92737f 100644 --- a/src/actions/recipe.ts +++ b/src/actions/recipe.ts @@ -1,6 +1,7 @@ import PropTypes from 'prop-types'; +import { ActionDefinitions } from './lib/actions'; -export default { +export default { install: { recipeId: PropTypes.string.isRequired, update: PropTypes.bool, -- cgit v1.2.3-54-g00ecf