import QuestionResults from '../wrappers/QuestionResults'; import QuestionDetail from '../wrappers/QuestionDetail'; import UserProfile from '../wrappers/UserProfile'; import Configurable from '../configurable'; interface Worker { findQuestion(question: string): Promise; findQuestionHighlight(category: Configurable.LessonItem): Promise; findQuestionById(id: string): Promise; fetchUserProfile(userId: string): Promise; } export default Worker;