@redocly/theme
Version:
Shared UI components lib
9 lines (8 loc) • 321 B
TypeScript
import type { CodeWalkthroughFile } from '@redocly/config';
export type RenderableFile = CodeWalkthroughFile & {
fileIcon: React.JSX.Element;
parentFolder: string;
isNameDuplicate: boolean;
inRootDir: boolean;
};
export declare function useRenderableFiles(files: CodeWalkthroughFile[]): RenderableFile[];