8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import { RevealPlugin } from 'reveal.js';
|
|
export interface NotesPlugin extends RevealPlugin {
|
|
id: 'notes';
|
|
open(): void;
|
|
}
|
|
declare const Notes: () => NotesPlugin;
|
|
export default Notes;
|