This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| AssessmentMeasures, | |
| AssessmentResult, | |
| BodyMeasurement, | |
| GenderType, | |
| } from "@domain/shared/entities/types"; | |
| export abstract class AssessmentAbstract { | |
| abstract calculateResults( | |
| input: AssessmentAbstract.Input |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Porque você deveria utilizar LocalStack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "env": { | |
| "browser": true, | |
| "es6": true | |
| }, | |
| "extends": [ | |
| "plugin:react/recommended", | |
| "airbnb", | |
| "plugin:@typescript-eslint/recommended", | |
| "prettier/@typescript-eslint", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const bookingMachine = Machine( | |
| { | |
| id: 'booking', | |
| type: 'parallel', | |
| states: { | |
| communicate: { | |
| initial: 'idle', | |
| states: { | |
| idle: { | |
| on: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const bookingMachine = Machine( | |
| { | |
| id: 'booking', | |
| type: 'parallel', | |
| states: { | |
| communicate: { | |
| on: { | |
| 'view.piece.done': { | |
| actions: send('view.piece.done', { | |
| to: `callbackInvoke` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const bookingMachine = Machine( | |
| { | |
| id: 'booking', | |
| initial: 'marriage', | |
| type: 'parallel', | |
| states: { | |
| marriage: { | |
| type: 'parallel', | |
| states: { | |
| squire: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fetchMachine = Machine({ | |
| id: 'fetch', | |
| initial: 'choosing', | |
| states: { | |
| choosing: { | |
| type: 'parallel', | |
| states: { | |
| squire: { | |
| initial: 'querying', | |
| states: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const bookingMachine = Machine( | |
| { | |
| id: 'booking', | |
| initial: 'marriage', | |
| states: { | |
| marriage: { | |
| type: 'parallel', | |
| states: { | |
| squire: { | |
| initial: 'queryingSquire', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const bookingMachine = Machine({ | |
| id: 'booking', | |
| initial: 'choosing', | |
| states: { | |
| choosing: { | |
| type: 'parallel', | |
| states: { | |
| squire: { | |
| initial: 'queryingSquire', | |
| states: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const bookingMachine = Machine({ | |
| id: 'booking', | |
| initial: 'choosing', | |
| states: { | |
| choosing: { | |
| type: 'parallel', | |
| states: { | |
| squire: { | |
| initial: 'querying', | |
| states: { |
NewerOlder