feat: Initial commit

This commit is contained in:
engigu
2025-12-20 09:30:16 +08:00
commit 362237241e
189 changed files with 12035 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
declare module 'jinrishici' {
interface JinrishiciResult {
data: {
content: string
origin: {
title: string
dynasty: string
author: string
content: string[]
}
}
}
export function load(
success: (result: JinrishiciResult) => void,
error?: (err: Error) => void
): void
}