initial commit

This commit is contained in:
Arjun 2026-05-05 20:13:55 +05:30
parent 7b119fbfcd
commit 697a43ebbc
4 changed files with 220 additions and 1 deletions

View file

@ -662,6 +662,15 @@ const ipcSchemas = {
error: z.string().optional(),
}),
},
'track:listNotes': {
req: z.null(),
res: z.object({
notes: z.array(z.object({
path: RelPath,
trackCount: z.number().int().positive(),
})),
}),
},
// Embedded browser (WebContentsView) channels
'browser:setBounds': {
req: z.object({