update filemanager navigation
This commit is contained in:
parent
11dc6b2132
commit
92b11f7b9d
31 changed files with 363 additions and 305 deletions
10
client-electron/src/models/android/schema.ts
Normal file
10
client-electron/src/models/android/schema.ts
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue