update packages and add valign

This commit is contained in:
2026-04-05 20:00:27 +02:00
parent b062fb98e3
commit 03fb00e374
640 changed files with 109768 additions and 39311 deletions

View File

@@ -0,0 +1,13 @@
import type { RevealPlugin } from 'reveal.js';
// @ts-expect-error The runtime implementation remains in JS during the migration.
import NotesImplementation from './plugin.js';
export interface NotesPlugin extends RevealPlugin {
id: 'notes';
open(): void;
}
const Notes = NotesImplementation as () => NotesPlugin;
export default Notes;