/
githubmirror
/
reveal.js
Обзор
Документация
Войти
/
githubmirror
/
reveal.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
plugin/zoom/index.ts
12 строк
320 B
Hakim El Hattab
plugin type improvements
10 мар 2026, 14:29
10 мар 2026, 14:29
580293b
Код
Авторство
О чём код?
import type { RevealPlugin } from 'reveal.js'; // @ts-expect-error The runtime implementation remains in JS during the migration. import ZoomImplementation from './plugin.js'; export interface ZoomPlugin extends RevealPlugin { id: 'zoom'; } const Zoom = ZoomImplementation as () => ZoomPlugin; export default Zoom;