first commit

This commit is contained in:
oboard
2026-03-31 19:37:23 +08:00
commit 727c2a0f1e
2066 changed files with 516141 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
export type ComputerUseAPI = {
screens?: {
list(): Promise<unknown[]>
}
apps?: {
listInstalled(): Promise<unknown[]>
listRunning(): Promise<unknown[]>
}
}
const stub: ComputerUseAPI = {
screens: {
async list() {
return []
},
},
apps: {
async listInstalled() {
return []
},
async listRunning() {
return []
},
},
}
export default stub