This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { create } from 'zustand'; | |
| // 定义文件系统节点基础结构 | |
| export interface VFSNode { | |
| id: string; | |
| name: string; | |
| type: 'file' | 'directory'; | |
| parentId: string | null; | |
| content?: string | Uint8Array; | |
| createdAt: number; |