import { Token } from '../../../../../zoo-message-ts/src/api/general/types.ts'; import { DirectoryContent } from '../../../../../zoo-message-ts/src/api/vector-fs/types.ts'; import { QueryObserverOptions } from '@tanstack/react-query'; import { FunctionKeyV2 } from '../../constants'; export type GetVRPathSimplifiedInput = Token & { nodeAddress: string; path: string; depth?: number; }; export type UseGetDirectoryContents = [ FunctionKeyV2.GET_VR_FILES, GetVRPathSimplifiedInput ]; export type GetVRPathSimplifiedOutput = DirectoryContent[]; export type Options = QueryObserverOptions;