initial-commit

This commit is contained in:
nicwands
2026-02-24 12:27:51 -05:00
commit 61b291ec25
9 changed files with 1637 additions and 0 deletions

6
src/definePlugin.ts Normal file
View File

@@ -0,0 +1,6 @@
import { validatePlugin } from './validatePlugin'
import type { NotesPlugin } from './types'
export const definePlugin = (plugin: NotesPlugin): NotesPlugin => {
return validatePlugin(plugin)
}