update filemanager navigation

This commit is contained in:
Kenta420 2024-02-20 15:01:43 +07:00
parent 11dc6b2132
commit 92b11f7b9d
31 changed files with 363 additions and 305 deletions

View file

@ -0,0 +1,10 @@
import { z } from 'zod'
export const AndroidFileSchema = z.object({
filename: z.string(),
type: z.number(),
size: z.bigint(),
dateModified: z.date()
})
export type AndroidFile = z.infer<typeof AndroidFileSchema>