Fix renderer type test (#1647)

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2021-11-21 12:48:30 +01:00 committed by GitHub
parent abceb356db
commit a96b06c95b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 40 additions and 16 deletions

View file

@ -120,9 +120,9 @@ export type RendererToEditorMessageType =
| CommunicationMessageType.ON_WORD_COUNT_CALCULATED
export enum RendererType {
DOCUMENT,
INTRO,
SLIDESHOW
DOCUMENT = 'document',
INTRO = 'intro',
SLIDESHOW = 'slideshow'
}
export interface BaseConfiguration {