init push

This commit is contained in:
2026-05-21 19:52:45 +08:00
commit e3f75311ab
1280 changed files with 179173 additions and 0 deletions

22
web/app/new-types.d.ts vendored Normal file
View File

@@ -0,0 +1,22 @@
/// <reference types="@panda-wiki/themes/types" />
declare module '@cap.js/widget' {
interface CapOptions {
apiEndpoint: string;
}
class Cap {
constructor(options: CapOptions);
solve(): Promise<{ token: string }>;
}
export default Cap;
}
declare global {
interface Window {
_BASE_PATH_?: string;
}
}
export {};