Add slides for Hermes the translator

This commit is contained in:
iacore
2026-05-23 16:00:27 +08:00
parent ef6a9f5cd9
commit d131f231bd
46 changed files with 28724 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { RevealPlugin } from 'reveal.js';
export interface SearchPlugin extends RevealPlugin {
id: 'search';
open(): void;
close(): void;
toggle(): void;
}
declare const Search: () => SearchPlugin;
export default Search;