| 6 | import { DISABLE_RUN_ON_SAVE } from '../../environment' |
| 7 | |
| 8 | interface TutorialConfigParams { |
| 9 | data: TT.Tutorial |
| 10 | alreadyConfigured?: boolean |
| 11 | onComplete?(): void |
| 12 | } |
| 13 | |
| 14 | const tutorialConfig = async ({ data, alreadyConfigured }: TutorialConfigParams): Promise<E.ErrorMessage | void> => { |
| 15 | if (!alreadyConfigured) { |
nothing calls this directly
no outgoing calls
no test coverage detected