mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2026-06-23 04:10:17 +00:00
db43e1db3f
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
16 lines
374 B
TypeScript
16 lines
374 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import type { RevealOptions } from 'reveal.js'
|
|
|
|
type WantedRevealOptions =
|
|
| 'autoSlide'
|
|
| 'autoSlideStoppable'
|
|
| 'transition'
|
|
| 'backgroundTransition'
|
|
| 'slideNumber'
|
|
|
|
export type SlideOptions = Pick<RevealOptions, WantedRevealOptions>
|