Initial Commit

This commit is contained in:
RiseForever
2026-08-11 10:25:27 +08:00
parent 70d33c0996
commit cd5e2796c2
161 changed files with 29688 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
/// <reference types="astro/client" />
interface TwikooClient {
init(options: Record<string, unknown>): Promise<unknown>;
getCommentsCount(options: Record<string, unknown>): Promise<Array<{ url: string; count: number }> | undefined>;
}
interface Window {
twikoo?: TwikooClient;
__miragesTwikoo?: { script?: Promise<TwikooClient>; clientBound?: boolean };
requestIdleCallback?: (callback: () => void) => number;
}