chore(i18n,docs): update translations (#43567)

This commit is contained in:
camperbot
2021-09-27 10:50:01 -07:00
committed by GitHub
parent eac0a395a1
commit af4ead336a
15 changed files with 361 additions and 90 deletions

View File

@ -76,9 +76,9 @@ export const actionFunction = (
### Cómo reducir
```typescript
// Acción del reductor de base sin carga útil
// Base reducer action without payload
type ReducerBase<T> = { type: T };
// Lógica para manejar cargas útiles opcionales
// Logic for handling optional payloads
type ReducerPayload<T extends AppActionTypes> =
T extends AppActionTypes.actionFunction
? ReducerBase<T> & {