Update IWordGameProps.ts

This commit is contained in:
Hugo Bernier 2020-05-28 22:38:39 -04:00 committed by GitHub
parent f87f57e0a7
commit 3f98c20537
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,6 @@
import { WordGameListItem } from "./WordService"; import { WordGameListItem } from './WordService';
import { GameState } from "./WordGame"; import { GameState } from './WordGame';
import { WebPartContext } from "@microsoft/sp-webpart-base"; import { WebPartContext } from '@microsoft/sp-webpart-base';
export interface IWordGameProps { export interface IWordGameProps {
description: string; description: string;
@ -19,5 +19,4 @@ export interface IWordGameState {
lblMessage: string; lblMessage: string;
highScores: WordGameListItem[]; highScores: WordGameListItem[];
mobileMode: boolean; mobileMode: boolean;
} }