7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
import { RevealPlugin } from 'reveal.js';
|
|
export interface ZoomPlugin extends RevealPlugin {
|
|
id: 'zoom';
|
|
}
|
|
declare const Zoom: () => ZoomPlugin;
|
|
export default Zoom;
|