src/app/models/tutorial.ts
| buttons |
buttons: |
| buttonText |
buttonText: |
| callback |
callback: |
| disableSkip |
disableSkip: |
| isFeedback |
isFeedback: |
| keepBubble |
keepBubble: |
| moon |
moon: |
| next |
next: |
| normalStar |
normalStar: |
| onlySpeech |
onlySpeech: |
| phrase |
phrase: |
| phraseTTS |
phraseTTS: |
| randomSpeechMode |
randomSpeechMode: |
| shootingStar |
shootingStar: |
| textBubble |
textBubble: |
export class Tutorial {
phrase: any;
phraseTTS: any;
callback: any;
next: Tutorial;
randomSpeechMode: boolean;
textBubble: boolean;
buttons: boolean;
buttonText: string;
disableSkip: boolean;
shootingStar: boolean;
normalStar: boolean;
moon: boolean;
onlySpeech: boolean;
keepBubble: boolean;
isFeedback: any;
}