update
Some checks failed
Deploy / deploy (build, debian, 22, /root/OJDeploy/data/clientnext) (push) Has been cancelled
Deploy / deploy (build:staging, school, 8822, /root/OJ/data/dist) (push) Has been cancelled

This commit is contained in:
2026-04-09 05:45:21 -06:00
parent 9fc0a91f5e
commit 31255bc11c
2 changed files with 38 additions and 1 deletions

8
src/env.d.ts vendored
View File

@@ -14,3 +14,11 @@ interface ImportMetaEnv {
interface ImportMeta {
readonly env: ImportMetaEnv
}
interface Document {
startViewTransition?: (callback: () => void | Promise<void>) => {
ready: Promise<void>
finished: Promise<void>
updateCallbackDone: Promise<void>
}
}